From ab8d774e06cbd09db41875015d4fb68ce1a65c96 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Fri, 21 Apr 2000 14:18:49 +0000 Subject: [PATCH] Handler.java (openConnection): Use `setURL', not `url.set'. * gnu/gcj/protocol/file/Handler.java (openConnection): Use `setURL', not `url.set'. From-SVN: r33306 --- libjava/ChangeLog | 5 +++++ libjava/gnu/gcj/protocol/file/Handler.java | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/libjava/ChangeLog b/libjava/ChangeLog index d5e16880ad6..4362afeb282 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,8 @@ +2000-04-21 Tom Tromey + + * gnu/gcj/protocol/file/Handler.java (openConnection): Use + `setURL', not `url.set'. + 2000-04-20 Tom Tromey Fix for PR java.io/204: diff --git a/libjava/gnu/gcj/protocol/file/Handler.java b/libjava/gnu/gcj/protocol/file/Handler.java index 285880d8c3d..b12ebd42b29 100644 --- a/libjava/gnu/gcj/protocol/file/Handler.java +++ b/libjava/gnu/gcj/protocol/file/Handler.java @@ -1,6 +1,6 @@ // Handler.java - URLStreamHandler for file protocol. -/* Copyright (C) 1999 Free Software Foundation +/* Copyright (C) 1999, 2000 Free Software Foundation This file is part of libgcj. @@ -37,7 +37,7 @@ public class Handler extends URLStreamHandler // Reset the protocol (and implicitly the handler) for this URL. // Then have the URL attempt the connection again, as it will // get the changed handler the next time around. - url.set("ftp", url.getHost(), url.getPort(), url.getFile(), + setURL (url, "ftp", url.getHost(), url.getPort(), url.getFile(), url.getRef()); // Until the ftp protocol handler is written, this will cause // a NullPointerException. -- 2.30.2