Connection.java, [...]: Reorganized import statements.
authorMichael Koch <konqueror@gmx.de>
Wed, 20 Apr 2005 09:25:25 +0000 (09:25 +0000)
committerMichael Koch <mkoch@gcc.gnu.org>
Wed, 20 Apr 2005 09:25:25 +0000 (09:25 +0000)
2005-04-20  Michael Koch  <konqueror@gmx.de>

* gnu/java/net/protocol/file/Connection.java,
gnu/java/net/protocol/jar/Connection.java:
Reorganized import statements. Fixed @author tags.

From-SVN: r98450

libjava/ChangeLog
libjava/gnu/java/net/protocol/file/Connection.java
libjava/gnu/java/net/protocol/jar/Connection.java

index 2df30109e0e4136fff2b48dc33df0923a285edc1..8213dd598fb2b7afbce29c01ccde8b5003b762d5 100644 (file)
@@ -1,3 +1,9 @@
+2005-04-20  Michael Koch  <konqueror@gmx.de>
+
+       * gnu/java/net/protocol/file/Connection.java,
+       gnu/java/net/protocol/jar/Connection.java:
+       Reorganized import statements. Fixed @author tags.
+
 2005-04-20  Chris Burdess  <dog@gnu.org>
 
        * java/io/DataOutputStream.java (writeUTF): Use block write for
index 2754717bb14ac53b69f278734494594b583ba658..77f8453406f39d51a18203435711c8c18b760dd2 100644 (file)
@@ -33,7 +33,7 @@ module.  An independent module is a module which is not derived from
 or based on this library.  If you modify this library, you may extend
 this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
-exception statement from your version.  */
+exception statement from your version. */
 
 package gnu.java.net.protocol.file;
 
@@ -46,8 +46,8 @@ import java.io.File;
 import java.io.FileInputStream;
 import java.io.FileOutputStream;
 import java.io.FilePermission;
-import java.io.InputStream;
 import java.io.IOException;
+import java.io.InputStream;
 import java.io.OutputStream;
 import java.net.ProtocolException;
 import java.net.URL;
@@ -62,9 +62,9 @@ import java.util.Locale;
  * This subclass of java.net.URLConnection models a URLConnection via
  * the "file" protocol.
  *
- * @author Aaron M. Renn <arenn@urbanophile.com>
- * @author Nic Ferrier <nferrier@tapsellferrier.co.uk>
- * @author Warren Levy <warrenl@cygnus.com>
+ * @author Aaron M. Renn (arenn@urbanophile.com)
+ * @author Nic Ferrier (nferrier@tapsellferrier.co.uk)
+ * @author Warren Levy (warrenl@cygnus.com)
  */
 public class Connection extends URLConnection
 {
index 1d27e4436aefd8af3cb011fa196ca55a94ba3763..1e423c445f77a63431b9e17e13436b0a3be1a1c6 100644 (file)
@@ -42,8 +42,8 @@ import java.io.BufferedInputStream;
 import java.io.ByteArrayInputStream;
 import java.io.File;
 import java.io.FileOutputStream;
-import java.io.InputStream;
 import java.io.IOException;
+import java.io.InputStream;
 import java.net.JarURLConnection;
 import java.net.MalformedURLException;
 import java.net.ProtocolException;
@@ -64,7 +64,7 @@ import java.util.zip.ZipFile;
  * This subclass of java.net.JarURLConnection models a URLConnection via
  * the "jar" protocol.
  *
- * @author Kresten Krab Thorup <krab@gnu.org>
+ * @author Kresten Krab Thorup (krab@gnu.org)
  */
 public final class Connection extends JarURLConnection
 {