Revision: 7780
Author: victormote
Date: 2006-07-15 14:07:38 -0700 (Sat, 15 Jul 2006)
ViewCVS: http://svn.sourceforge.net/foray/?rev=7780&view=rev
Log Message:
-----------
Use the method designed to get the right strategy.
Modified Paths:
--------------
trunk/foray/foray-common/src/java/org/foray/common/url/ProtocolRegistrationBroker.java
Modified: trunk/foray/foray-common/src/java/org/foray/common/url/ProtocolRegistrationBroker.java
===================================================================
--- trunk/foray/foray-common/src/java/org/foray/common/url/ProtocolRegistrationBroker.java 2006-07-08 22:05:19 UTC (rev 7779)
+++ trunk/foray/foray-common/src/java/org/foray/common/url/ProtocolRegistrationBroker.java 2006-07-15 21:07:38 UTC (rev 7780)
@@ -146,7 +146,7 @@
* been registered.
*/
public static URLStreamHandler getURLStreamHandler(String protocol) {
- return strategy.getURLStreamHandler(protocol);
+ return getRegistrationStrategy().getURLStreamHandler(protocol);
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|