[kaffe] CVS kaffe (dalibor): Resynced with GNU Classpath

Kaffe CVS cvs-commits at kaffe.org
Thu Jan 8 10:05:10 PST 2004


PatchSet 4297 
Date: 2004/01/08 17:38:57
Author: dalibor
Branch: HEAD
Tag: (none) 
Log:
Resynced with GNU Classpath

2004-01-08  Dalibor Topic <robilad at kaffe.org>

        Resynced with GNU Classpath.

        2004-01-06  Michael Koch  <konqueror at gmx.de>

        * gnu/java/net/protocol/file/Connection.java
        (Connection): Don't re-initialize doOutput with the default value.

Members: 
	ChangeLog:1.1884->1.1885 
	libraries/javalib/gnu/java/net/protocol/file/Connection.java:1.3->1.4 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.1884 kaffe/ChangeLog:1.1885
--- kaffe/ChangeLog:1.1884	Thu Jan  8 17:25:25 2004
+++ kaffe/ChangeLog	Thu Jan  8 17:38:57 2004
@@ -2,6 +2,15 @@
 
 	Resynced with GNU Classpath.
 
+	2004-01-06  Michael Koch  <konqueror at gmx.de>
+
+        * gnu/java/net/protocol/file/Connection.java
+        (Connection): Don't re-initialize doOutput with the default value.
+
+2004-01-08  Dalibor Topic <robilad at kaffe.org>
+
+	Resynced with GNU Classpath.
+
 	2004-01-08  Michael Koch  <konqueror at gmx.de>
 
         * gnu/java/nio/SocketChannelImpl.java
Index: kaffe/libraries/javalib/gnu/java/net/protocol/file/Connection.java
diff -u kaffe/libraries/javalib/gnu/java/net/protocol/file/Connection.java:1.3 kaffe/libraries/javalib/gnu/java/net/protocol/file/Connection.java:1.4
--- kaffe/libraries/javalib/gnu/java/net/protocol/file/Connection.java:1.3	Wed Dec  3 20:26:06 2003
+++ kaffe/libraries/javalib/gnu/java/net/protocol/file/Connection.java	Thu Jan  8 17:39:00 2004
@@ -85,7 +85,7 @@
    * OutputStream if we are writing to the file
    */
   private OutputStream outputStream;
-
+  
   /**
    * FilePermission to read the file
    */
@@ -97,9 +97,6 @@
   public Connection(URL url)
   {
     super (url);
-    
-    /* Set up some variables */
-    doOutput = false;
 
     permission = new FilePermission(getURL().getFile(), DEFAULT_PERMISSION);
   }
@@ -316,5 +313,4 @@
 	}
       };
   }
-
-} // class FileURLConnection
+}




More information about the kaffe mailing list