mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-15 01:42:37 +00:00
ICU-4511 fix icu data loading for websphere - wsjar support?
X-SVN-Rev: 17745
This commit is contained in:
parent
235a02a9b7
commit
8e1227487d
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue