Index: java/net/URL.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/net/URL.java,v retrieving revision 1.27 diff -u -r1.27 URL.java --- java/net/URL.java 20 Apr 2004 16:29:11 -0000 1.27 +++ java/net/URL.java 23 Apr 2004 07:27:03 -0000 @@ -823,7 +823,9 @@ // If a non-default factory has been set, use it to find the protocol. if (factory != null) - ph = factory.createURLStreamHandler(protocol); + { + ph = factory.createURLStreamHandler(protocol); + } // Non-default factory may have returned null or a factory wasn't set. // Use the default search algorithm to find a handler for this protocol. Index: java/net/URLConnection.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/net/URLConnection.java,v retrieving revision 1.26 diff -u -r1.26 URLConnection.java --- java/net/URLConnection.java 17 Apr 2004 18:42:20 -0000 1.26 +++ java/net/URLConnection.java 23 Apr 2004 07:27:03 -0000 @@ -161,6 +161,7 @@ * This is the URL associated with this connection */ protected URL url; + private static SimpleDateFormat dateFormat1; private static SimpleDateFormat dateFormat2; private static SimpleDateFormat dateFormat3;