2003-12-31 Guilhem Lavaux <guilhem@kaffe.org>
* java/net/URL.java (URL): Change context path to "/" if it is empty. From-SVN: r75264
This commit is contained in:
committed by
Michael Koch
parent
ad12652102
commit
d415865929
@@ -396,6 +396,8 @@ public final class URL implements Serializable
|
||||
host = context.host;
|
||||
port = context.port;
|
||||
file = context.file;
|
||||
if (file == null || file.length() == 0)
|
||||
file = "/";
|
||||
authority = context.authority;
|
||||
}
|
||||
}
|
||||
@@ -408,6 +410,8 @@ public final class URL implements Serializable
|
||||
host = context.host;
|
||||
port = context.port;
|
||||
file = context.file;
|
||||
if (file == null || file.length() == 0)
|
||||
file = "/";
|
||||
authority = context.authority;
|
||||
}
|
||||
else // Protocol NOT specified in spec. and no context available.
|
||||
|
||||
Reference in New Issue
Block a user