Commit 5bb3fc27 by Michael Koch

[multiple changes]

2004-09-24  Guilhem Lavaux  <guilhem@kaffe.org>

	* java/net/URL.java (URL): Delete whitespaces in the protocol string.

2004-09-24  Jeroen Frijters  <jeroen@frijters.net>

	* java/net/URL.java (URL(String,String,int,String,URLStreamHandler):
	Don't set authority if host isn't specified.

From-SVN: r88015
parent 9e54846f
2004-09-24 Guilhem Lavaux <guilhem@kaffe.org>
* java/net/URL.java (URL): Delete whitespaces in the protocol string.
2004-09-24 Jeroen Frijters <jeroen@frijters.net>
* java/net/URL.java (URL(String,String,int,String,URLStreamHandler):
Don't set authority if host isn't specified.
2004-09-24 Michael Koch <konqueror@gmx.de>
* gnu/java/nio/PipeImpl.java: Use VMPipe for native stuff.
......
......@@ -284,7 +284,7 @@ public final class URL implements Serializable
this.host = host;
this.port = port;
this.authority = (host != null) ? host : "";
if (port >= 0)
if (port >= 0 && host != null)
this.authority += ":" + port;
int hashAt = file.indexOf('#');
......@@ -427,6 +427,8 @@ public final class URL implements Serializable
throw new MalformedURLException("Absolute URL required with null context");
protocol = protocol.trim();
if (ph != null)
{
SecurityManager s = System.getSecurityManager();
......
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