ICU-4511 fix icu data loading for websphere - wsjar support?

X-SVN-Rev: 17745
This commit is contained in:
Doug Felt 2005-05-31 17:21:46 +00:00
parent 235a02a9b7
commit 8e1227487d

View file

@ -109,7 +109,7 @@ public abstract class URLHandler {
String protocol = url.getProtocol();
if (protocol.equals("file")) {
return new FileURLHandler(url);
} else if (protocol.equals("jar")) {
} else if (protocol.equals("jar") || protocol.equals("wsjar")) {
return new JarURLHandler(url);
} else {
return null;