Commit d4158659 by Guilhem Lavaux Committed by Michael Koch

2003-12-31 Guilhem Lavaux <guilhem@kaffe.org>

	* java/net/URL.java
	(URL): Change context path to "/" if it is empty.

From-SVN: r75264
parent ad126521
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> 2003-12-31 Michael Koch <konqueror@gmx.de>
* testsuite/libjava.mauve/xfails: Removed tests that pass now: * testsuite/libjava.mauve/xfails: Removed tests that pass now:
......
...@@ -396,6 +396,8 @@ public final class URL implements Serializable ...@@ -396,6 +396,8 @@ public final class URL implements Serializable
host = context.host; host = context.host;
port = context.port; port = context.port;
file = context.file; file = context.file;
if (file == null || file.length() == 0)
file = "/";
authority = context.authority; authority = context.authority;
} }
} }
...@@ -408,6 +410,8 @@ public final class URL implements Serializable ...@@ -408,6 +410,8 @@ public final class URL implements Serializable
host = context.host; host = context.host;
port = context.port; port = context.port;
file = context.file; file = context.file;
if (file == null || file.length() == 0)
file = "/";
authority = context.authority; authority = context.authority;
} }
else // Protocol NOT specified in spec. and no context available. else // Protocol NOT specified in spec. and no context available.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment