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:
Guilhem Lavaux 2003-12-31 10:55:40 +00:00 committed by Michael Koch
parent ad12652102
commit d415865929
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2003-12-31 Guilhem Lavaux <guilhem@kaffe.org>
* java/net/URL.java
(URL): Change context path to "/" if it is empty.
2003-12-31 Michael Koch <konqueror@gmx.de>
* testsuite/libjava.mauve/xfails: Removed tests that pass now:

View File

@ -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.