From 119d34b273950b9b2329846da4ca6670b23e0dbe Mon Sep 17 00:00:00 2001 From: Michael Koch <mkoch@gcc.gnu.org> Date: Wed, 29 Oct 2003 14:44:51 +0000 Subject: Somehow this didnt got commited due to full hard disk. From-SVN: r73040 --- libjava/java/net/URLStreamHandler.java | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'libjava/java/net') diff --git a/libjava/java/net/URLStreamHandler.java b/libjava/java/net/URLStreamHandler.java index 61b466c..9198370 100644 --- a/libjava/java/net/URLStreamHandler.java +++ b/libjava/java/net/URLStreamHandler.java @@ -480,12 +480,8 @@ public abstract class URLStreamHandler if (host.length() != 0) sb.append("//").append(host); - // Note that this produces different results from JDK 1.2 as JDK 1.2 - // ignores a non-default port if host is null or "". That is inconsistent - // with the spec since the result of this method is spec'ed so it can be - // used to construct a new URL that is equivalent to the original. - boolean port_needed = port > 0 && port != getDefaultPort(); - if (port_needed) + // Append port if port was in URL spec. + if (port != -1) sb.append(':').append(port); sb.append(file); -- cgit v1.1