]> gcc.gnu.org Git - gcc.git/commitdiff
BindException.java, [...]: Big import statement and @author tag cleanup.
authorMichael Koch <konqueror@gmx.de>
Sun, 17 Oct 2004 08:29:57 +0000 (08:29 +0000)
committerMichael Koch <mkoch@gcc.gnu.org>
Sun, 17 Oct 2004 08:29:57 +0000 (08:29 +0000)
2004-10-17  Michael Koch  <konqueror@gmx.de>

* java/net/BindException.java,
java/net/ConnectException.java,
java/net/ContentHandler.java,
java/net/ContentHandlerFactory.java,
java/net/DatagramPacket.java,
java/net/DatagramSocket.java,
java/net/DatagramSocketImpl.java,
java/net/DatagramSocketImplFactory.java,
java/net/FileNameMap.java,
java/net/HttpURLConnection.java,
java/net/MalformedURLException.java,
java/net/MulticastSocket.java,
java/net/NetworkInterface.java,
java/net/NoRouteToHostException.java,
java/net/PasswordAuthentication.java,
java/net/PortUnreachableException.java,
java/net/ProtocolException.java,
java/net/ServerSocket.java,
java/net/Socket.java,
java/net/SocketException.java,
java/net/SocketImpl.java,
java/net/SocketImplFactory.java,
java/net/SocketOptions.java,
java/net/SocketPermission.java,
java/net/SocketTimeoutException.java,
java/net/URI.java,
java/net/URISyntaxException.java,
java/net/URL.java,
java/net/URLDecoder.java,
java/net/URLEncoder.java,
java/net/URLStreamHandler.java,
java/net/URLStreamHandlerFactory.java,
java/net/UnknownHostException.java,
java/net/UnknownServiceException.java:
Big import statement and @author tag cleanup.

From-SVN: r89168

35 files changed:
libjava/ChangeLog
libjava/java/net/BindException.java
libjava/java/net/ConnectException.java
libjava/java/net/ContentHandler.java
libjava/java/net/ContentHandlerFactory.java
libjava/java/net/DatagramPacket.java
libjava/java/net/DatagramSocket.java
libjava/java/net/DatagramSocketImpl.java
libjava/java/net/DatagramSocketImplFactory.java
libjava/java/net/FileNameMap.java
libjava/java/net/HttpURLConnection.java
libjava/java/net/MalformedURLException.java
libjava/java/net/MulticastSocket.java
libjava/java/net/NetworkInterface.java
libjava/java/net/NoRouteToHostException.java
libjava/java/net/PasswordAuthentication.java
libjava/java/net/PortUnreachableException.java
libjava/java/net/ProtocolException.java
libjava/java/net/ServerSocket.java
libjava/java/net/Socket.java
libjava/java/net/SocketException.java
libjava/java/net/SocketImpl.java
libjava/java/net/SocketImplFactory.java
libjava/java/net/SocketOptions.java
libjava/java/net/SocketPermission.java
libjava/java/net/SocketTimeoutException.java
libjava/java/net/URI.java
libjava/java/net/URISyntaxException.java
libjava/java/net/URL.java
libjava/java/net/URLDecoder.java
libjava/java/net/URLEncoder.java
libjava/java/net/URLStreamHandler.java
libjava/java/net/URLStreamHandlerFactory.java
libjava/java/net/UnknownHostException.java
libjava/java/net/UnknownServiceException.java

index 9c1d187e5b8a634beff4103243368c5573c3019e..fb55ee6a3ccc0634d45bb7dab7a0b767517bd30f 100644 (file)
@@ -1,3 +1,41 @@
+2004-10-17  Michael Koch  <konqueror@gmx.de>
+
+       * java/net/BindException.java,
+       java/net/ConnectException.java,
+       java/net/ContentHandler.java,
+       java/net/ContentHandlerFactory.java,
+       java/net/DatagramPacket.java,
+       java/net/DatagramSocket.java,
+       java/net/DatagramSocketImpl.java,
+       java/net/DatagramSocketImplFactory.java,
+       java/net/FileNameMap.java,
+       java/net/HttpURLConnection.java,
+       java/net/MalformedURLException.java,
+       java/net/MulticastSocket.java,
+       java/net/NetworkInterface.java,
+       java/net/NoRouteToHostException.java,
+       java/net/PasswordAuthentication.java,
+       java/net/PortUnreachableException.java,
+       java/net/ProtocolException.java,
+       java/net/ServerSocket.java,
+       java/net/Socket.java,
+       java/net/SocketException.java,
+       java/net/SocketImpl.java,
+       java/net/SocketImplFactory.java,
+       java/net/SocketOptions.java,
+       java/net/SocketPermission.java,
+       java/net/SocketTimeoutException.java,
+       java/net/URI.java,
+       java/net/URISyntaxException.java,
+       java/net/URL.java,
+       java/net/URLDecoder.java,
+       java/net/URLEncoder.java,
+       java/net/URLStreamHandler.java,
+       java/net/URLStreamHandlerFactory.java,
+       java/net/UnknownHostException.java,
+       java/net/UnknownServiceException.java:
+       Big import statement and @author tag cleanup.
+
 2004-10-17  Michael Koch  <konqueror@gmx.de>
 
        * gnu/java/security/OID.java,
index 00885e8f21c7015c3138c3690a15c01037e1ddd0..fcb4f9d22d44dcac5ba4bf3e9d6317cb688a1ed6 100644 (file)
@@ -42,8 +42,8 @@ package java.net;
  * This exception indicates that an error occurred while attempting to bind
  * socket to a particular port.
  *
- * @author Aaron M. Renn <arenn@urbanophile.com>
- * @author Warren Levy <warrenl@cygnus.com>
+ * @author Aaron M. Renn (arenn@urbanophile.com)
+ * @author Warren Levy (warrenl@cygnus.com)
  * @since 1.1
  * @status updated to 1.4
  */
index 2dd35e72d0fb68b437db203d68c37bbd4552eab9..2a3ec940d3f55987c9e8175f9ab23250112d6b00 100644 (file)
@@ -43,8 +43,8 @@ package java.net;
  * connect to a remote host.  Often this indicates that the remote host
  * refused the connection (ie, is not listening on the target socket).
  *
- * @author Aaron M. Renn <arenn@urbanophile.com>
- * @author Warren Levy <warrenl@cygnus.com>
+ * @author Aaron M. Renn (arenn@urbanophile.com)
+ * @author Warren Levy (warrenl@cygnus.com)
  * @since 1.1
  * @status updated to 1.4
  */
index 5e3de23d4dcddbccf229874e171185251df22758..a3b946cd9517c4b9a964d1d7e9d463e58e49e9e2 100644 (file)
@@ -55,7 +55,7 @@ import java.io.IOException;
   * indirectly through methods in other classes.
   *
   * @author Aaron M. Renn (arenn@urbanophile.com)
-  * @author Warren Levy <warrenl@cygnus.com>
+  * @author Warren Levy (warrenl@cygnus.com)
   */
 public abstract class ContentHandler
 {
index cdfbca285d3c365a7551c81b91a9d97713ebb18c..fa8e8188f164f34b21ebc755c10433594a7d84dc 100644 (file)
@@ -49,7 +49,7 @@ package java.net;
   * handler for that type.
   *
   * @author Aaron M. Renn (arenn@urbanophile.com)
-  * @author Warren Levy <warrenl@cygnus.com>
+  * @author Warren Levy (warrenl@cygnus.com)
   */
 public interface ContentHandlerFactory
 {
index 549a3609a3dcf44b9abe4eb0c37673a79f4659aa..087a80630b6d907285b62cd82c02eb1806604576 100644 (file)
@@ -62,7 +62,7 @@ package java.net;
  * as "The Java Class Libraries", 2nd edition (Addison-Wesley, 1998).
  * Status:  Believed complete and correct.
  *
- * @author Warren Levy <warrenl@cygnus.com>
+ * @author Warren Levy (warrenl@cygnus.com)
  * @author Aarom M. Renn (arenn@urbanophile.com) (Documentation comments)
  * @date April 28, 1999.
  */
index c84efdaf2cdf77a3f27d3b6a61b745f2aab63f74..e00425f29c990df5bab59cc2f13019f2b10b9a97 100644 (file)
@@ -40,6 +40,7 @@ package java.net;
 
 import gnu.java.net.PlainDatagramSocketImpl;
 import gnu.java.nio.DatagramChannelImpl;
+
 import java.io.IOException;
 import java.nio.channels.DatagramChannel;
 import java.nio.channels.IllegalBlockingModeException;
index 0c21e2410d8936da3fca8b22a17e89a9a3109282..b48019f77c1bc96caa9511f28baa44e12d7e6b4d 100644 (file)
@@ -53,7 +53,7 @@ import java.io.IOException;
  * Status:  Believed complete and correct.
  *
  * @author Aaron M. Renn (arenn@urbanophile.com)
- * @author Warren Levy <warrenl@cygnus.com>
+ * @author Warren Levy (warrenl@cygnus.com)
  * @since 1.1
  */
 public abstract class DatagramSocketImpl implements SocketOptions
index 16a0a2ec1aa26cc1cf05efffa1c98b2a1278699f..54764577d3bb131065020507d028b51545136d3a 100644 (file)
@@ -1,4 +1,4 @@
-/* DatagramSocketImplFactory.java
+/* DatagramSocketImplFactory.java --
    Copyright (C) 2002, 2003 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
@@ -46,7 +46,7 @@ package java.net;
   * <code>DatagramSocketImpl</code> object.
   * This should not be needed by ordinary applications.
   *
-  * @author Michael Koch <konqueror@gmx.de>
+  * @author Michael Koch (konqueror@gmx.de)
   * @since 1.3
   */
 public interface DatagramSocketImplFactory
index fbc6059c564fc6e9b2016a09fd6ba8f57879c0be..37033c2b136cc86bebbe70748700d0aa06a33a28 100644 (file)
@@ -48,7 +48,7 @@ package java.net;
   * the MIME type associated with that filename.
   *
   * @author Aaron M. Renn (arenn@urbanophile.com)
-  * @author Warren Levy <warrenl@cygnus.com>
+  * @author Warren Levy (warrenl@cygnus.com)
   * @since 1.1
   */
 public interface FileNameMap
index e603d2b929d62cd4756a8af9787f354c0f18c520..c4c99378e621a37b19b11734f15657f2043b9ccd 100644 (file)
@@ -1,5 +1,5 @@
-/* HttpURLConnection.java - Subclass of communications links using
-                            Hypertext Transfer Protocol.
+/* HttpURLConnection.java -- Subclass of communications links using
+   Hypertext Transfer Protocol.
    Copyright (C) 1998, 1999, 2000, 2002, 2003  Free Software Foundation
 
 This file is part of GNU Classpath.
@@ -291,7 +291,7 @@ public abstract class HttpURLConnection extends URLConnection
   /**
    * This is a list of valid request methods, separated by "|" characters.
    */
-  private static String valid_methods =
+  private static final String valid_methods =
     "|GET|POST|HEAD|OPTIONS|PUT|DELETE|TRACE|";
 
   // Instance Variables
@@ -537,7 +537,7 @@ public abstract class HttpURLConnection extends URLConnection
   public InputStream getErrorStream()
   {
     if (! connected)
-      return (null);
+      return null;
 
     int code;
     try
@@ -550,10 +550,10 @@ public abstract class HttpURLConnection extends URLConnection
       }
 
     if (code == -1)
-      return (null);
+      return null;
 
     if (((code / 100) != 4) || ((code / 100) != 5))
-      return (null);
+      return null;
 
     try
       {
@@ -561,14 +561,14 @@ public abstract class HttpURLConnection extends URLConnection
 
        int i = pbis.read();
        if (i == -1)
-         return (null);
+         return null;
 
        pbis.unread(i);
-       return (pbis);
+       return pbis;
       }
     catch (IOException e)
       {
-       return (null);
+       return null;
       }
   }
 
index c9a50fa8650280527311fc4358ba137d58ba411d..6fdf12ae507f8b497e9d5500f3cfce8f335ace14 100644 (file)
@@ -44,8 +44,8 @@ import java.io.IOException;
  * This exception indicates that a URL passed to an object was not in a
  * valid format.
  *
- * @author Aaron M. Renn <arenn@urbanophile.com>
- * @author Warren Levy <warrenl@cygnus.com>
+ * @author Aaron M. Renn (arenn@urbanophile.com)
+ * @author Warren Levy (warrenl@cygnus.com)
  * @status updated to 1.4
  */
 public class MalformedURLException extends IOException
index c177531f22f30e0a2d577f0b419a708869f0652b..65e63253cc213ae69a556dfb810404036722d0dd 100644 (file)
@@ -60,7 +60,7 @@ import java.util.Enumeration;
  * as "The Java Class Libraries", 2nd edition (Addison-Wesley, 1998).
  * Status:  Believed complete and correct.
  *
- * @author Warren Levy <warrenl@cygnus.com>
+ * @author Warren Levy (warrenl@cygnus.com)
  * @author Aaron M. Renn (arenn@urbanophile.com) (Documentation comments)
  * @since 1.1
  * @date May 18, 1999.
index ab6d7b4263ffe9e12d196de94bd3c7d709cc782b..defd3482583ecdb7bc6dce674ba296ff7e5269eb 100644 (file)
@@ -1,4 +1,4 @@
-/* NetworkInterface.java
+/* NetworkInterface.java --
    Copyright (C) 2002, 2003 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
@@ -49,7 +49,7 @@ import java.util.Vector;
  * For example, an ethernet interface may be named "eth0" and have the
  * address 192.168.1.101 assigned to it.
  *
- * @author Michael Koch <konqueror@gmx.de>
+ * @author Michael Koch (konqueror@gmx.de)
  * @since 1.4
  */
 public final class NetworkInterface
@@ -113,6 +113,7 @@ public final class NetworkInterface
          }
        catch (SecurityException e)
          {
+           // Ignore.
          }
       }
 
index d13389386591324c1842e378f9635d55d0e2b0b6..5427fb58e3d9f9516b6b308d312de755c8c5dc87 100644 (file)
@@ -42,8 +42,8 @@ package java.net;
   * This exception indicates that there is no TCP/IP route to the requested
   * host.  This is often due to a misconfigured routing table.
   *
-  * @author Aaron M. Renn <arenn@urbanophile.com>
-  * @author Warren Levy <warrenl@cygnus.com>
+  * @author Aaron M. Renn (arenn@urbanophile.com)
+  * @author Warren Levy (warrenl@cygnus.com)
   * @since 1.1
   * @status updated to 1.4
   */
index 910803a8f3a505d9f5215235af9f5f14e0d4a1ea..671783d845c44cd517404c497cebb9a0a7bff9f5 100644 (file)
@@ -39,69 +39,54 @@ package java.net;
 
 
 /**
-  * This class serves a container for username/password pairs.
-  *
-  * @author Aaron M. Renn (arenn@urbanophile.com)
-  * @since 1.2
-  */
+ * This class serves a container for username/password pairs.
+ *
+ * @author Aaron M. Renn (arenn@urbanophile.com)
+ *
+ * @since 1.2
+ */
 public final class PasswordAuthentication
 {
-  /*
-   * Instance Variables
-   */
-
   /**
-    * The username
-    */
+   * The username
+   */
   private String username;
 
   /**
-    * The password
-    */
-  private char[] password;
-
-  /*************************************************************************/
-
-  /*
-   * Constructors
+   * The password
    */
+  private char[] password;
 
   /**
-    * Creates a new <code>PasswordAuthentication</code> object from the
-    * specified username and password.
-    *
-    * @param username The username for this object
-    * @param password The password for this object
-    */
+   * Creates a new <code>PasswordAuthentication</code> object from the
+   * specified username and password.
+   *
+   * @param username The username for this object
+   * @param password The password for this object
+   */
   public PasswordAuthentication(String username, char[] password)
   {
     this.username = username;
     this.password = password;
   }
 
-  /*************************************************************************/
-
-  /*
-   * Instance Methods
-   */
-
   /**
-    * Returns the username associated with this object
-    *
-    * @return The username
-    */
+   * Returns the username associated with this object
+   *
+   * @return The username
+   */
   public String getUserName()
   {
-    return (username);
+    return username;
   }
 
   /**
-    * Returns the password associated with this object
-    *
-    * @return The password
-    */
+   * Returns the password associated with this object
+   *
+   * @return The password
+   */
   public char[] getPassword()
   {
-    return (password);
+    return password;
   }
-} // class PasswordAuthentication
+}
index def02636e58c68fdacb772eddfe5c5bc93081b40..f3ba17b7d4afc2708ce357a9591df524b71e4d70 100644 (file)
@@ -42,7 +42,7 @@ package java.net;
  * This exception signals that an ICMP port unreachable datagram has been
  * received.
  *
- * @author Eric Blake <ebb9@email.byu.edu>
+ * @author Eric Blake (ebb9@email.byu.edu)
  * @since 1.4
  * @status updated to 1.4
  */
index d058113495e8f49184ae95c7778eccbc07ee0be2..7f14ab25d87077538915d09d088c2ae374c3930b 100644 (file)
@@ -45,8 +45,8 @@ import java.io.IOException;
  * exception occurred.  Look in the descriptive message (if any) for
  * details on what went wrong.
  *
- * @author Aaron M. Renn <arenn@urbanophile.com>
- * @author Warren Levy <warrenl@cygnus.com>
+ * @author Aaron M. Renn (arenn@urbanophile.com)
+ * @author Warren Levy (warrenl@cygnus.com)
  * @status updated to 1.4
  */
 public class ProtocolException extends IOException
index e507f0b3b09940956d0b59dd054790fba7fa1393..b0576bf4cd506d8b0569845f3ae02e9cfe6b05f8 100644 (file)
@@ -39,6 +39,7 @@ exception statement from your version. */
 package java.net;
 
 import gnu.java.net.PlainSocketImpl;
+
 import java.io.IOException;
 import java.nio.channels.IllegalBlockingModeException;
 import java.nio.channels.ServerSocketChannel;
@@ -340,6 +341,7 @@ public class ServerSocket
          }
        catch (IOException e2)
          {
+           // Ignore.
          }
 
        throw e;
index 80caced4e33f50a4d3111530d7edd0c7c915d560..bebd73d547962c4a863f325c99f71d9a7ccd4fc5 100644 (file)
@@ -39,6 +39,7 @@ exception statement from your version. */
 package java.net;
 
 import gnu.java.net.PlainSocketImpl;
+
 import java.io.IOException;
 import java.io.InputStream;
 import java.io.OutputStream;
index 6b863606630d7a7a704ff5e2dcc1663988efdec1..f130d52f2811dffcf0b9b8bd07f51cc4cc022cd8 100644 (file)
@@ -45,7 +45,7 @@ import java.io.IOException;
  * operation on a socket.  Check the descriptive message (if any) for
  * details on the nature of this error
  *
- * @author Aaron M. Renn <arenn@urbanophile.com>
+ * @author Aaron M. Renn (arenn@urbanophile.com)
  * @author Per Bothner
  * @status updated to 1.4
  */
index 8cfb9ef5a1d2a2490db32beca11afee885ac5daa..4016a2fb69faf99736d4086e394291671e387225 100644 (file)
@@ -62,7 +62,7 @@ import java.io.OutputStream;
  * a factory.
  *
  * @author Aaron M. Renn (arenn@urbanophile.com)
- * @author Per Bothner <bothner@cygnus.com>
+ * @author Per Bothner (bothner@cygnus.com)
  */
 public abstract class SocketImpl implements SocketOptions
 {
index 84e92a521f16da8b43dbbf0128f5b132a28e5b23..99374dedc4d99c012562d41bfcbea61bf7020368 100644 (file)
@@ -46,7 +46,7 @@ package java.net;
   * object.  This should not be needed by ordinary applications.
   *
   * @author Aaron M. Renn (arenn@urbanophile.com)
-  * @author Per Bothner <bothner@cygnus.com>
+  * @author Per Bothner (bothner@cygnus.com)
   */
 public interface SocketImplFactory
 {
index 7ccd887cc6811b714534f776bfd93d3782bd57d2..b266919f5ec281819970cb4e73c2893153d0d720 100644 (file)
@@ -51,7 +51,7 @@ package java.net;
  * @since 1.2
  *
  * @author Aaron M. Renn (arenn@urbanophile.com)
- * @author Warren Levy <warrenl@cygnus.com>
+ * @author Warren Levy (warrenl@cygnus.com)
  * @status should be completely JDK 1.4 compatible
  */
 public interface SocketOptions
index e9d1402a7d420c8e9200afeedf18ebadc92e92c9..0cd18c772e03b69ba6f0845571b3480b0b6841aa 100644 (file)
@@ -151,13 +151,13 @@ public final class SocketPermission extends Permission implements Serializable
   public boolean equals(Object obj)
   {
     if (! (obj instanceof SocketPermission))
-      return (false);
+      return false;
 
     if (((SocketPermission) obj).hostport.equals(hostport))
       if (((SocketPermission) obj).actions.equals(actions))
-       return (true);
+       return true;
 
-    return (false);
+    return false;
   }
 
   /**
@@ -216,7 +216,7 @@ public final class SocketPermission extends Permission implements Serializable
     else if (actions.indexOf("resolve") != -1)
       sb.append("resolve");
 
-    return (sb.toString());
+    return sb.toString();
   }
 
   /**
@@ -229,7 +229,7 @@ public final class SocketPermission extends Permission implements Serializable
   {
     // FIXME: Implement
 
-    return (null);
+    return null;
   }
 
   /**
@@ -265,14 +265,14 @@ public final class SocketPermission extends Permission implements Serializable
     if (perm instanceof SocketPermission)
       p = (SocketPermission) perm;
     else
-      return (false);
+      return false;
 
     // Next check the actions
     String ourlist = getActions();
     String theirlist = p.getActions();
 
     if (! ourlist.startsWith(theirlist))
-      return (false);
+      return false;
 
     // Now check ports
     int ourfirstport = 0;
@@ -347,7 +347,7 @@ public final class SocketPermission extends Permission implements Serializable
 
     // Now check them
     if ((theirfirstport < ourfirstport) || (theirlastport > ourlastport))
-      return (false);
+      return false;
 
     // Finally we can check the hosts
     String ourhost;
@@ -369,7 +369,7 @@ public final class SocketPermission extends Permission implements Serializable
 
     // Are they equal?
     if (ourhost.equals(theirhost))
-      return (true);
+      return true;
 
     // Try the canonical names
     String ourcanonical = null;
@@ -392,17 +392,17 @@ public final class SocketPermission extends Permission implements Serializable
       }
 
     if (ourcanonical.equals(theircanonical))
-      return (true);
+      return true;
 
     // Well, last chance.  Try for a wildcard
     if (ourhost.indexOf("*.") != -1)
       {
        String wild_domain = ourhost.substring(ourhost.indexOf("*" + 1));
        if (theircanonical.endsWith(wild_domain))
-         return (true);
+         return true;
       }
 
     // Didn't make it
-    return (false);
+    return false;
   }
 }
index e375065b3448c8d77aba06730d45aba772f6784b..35bae90ac15ac1840301e4293ea808009dc2db00 100644 (file)
@@ -43,7 +43,7 @@ import java.io.InterruptedIOException;
 /**
  * This exception signals that a socket read or accept timed out.
  *
- * @author Eric Blake <ebb9@email.byu.edu>
+ * @author Eric Blake (ebb9@email.byu.edu)
  * @since 1.4
  * @status updated to 1.4
  */
index dc95e6ecbaa86f190ba1f950628a68bfa7123db8..01381cd8a814ed6a80b9e4468a8c03ba400e3df3 100644 (file)
@@ -1,4 +1,4 @@
-/* URI.java - An URI class
+/* URI.java - An URI class --
    Copyright (C) 2002, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
@@ -134,14 +134,14 @@ public final class URI implements Comparable, Serializable
   {
     this.string = (String) is.readObject();
     try
-    {
-      parseURI(this.string);
-    }
+      {
+       parseURI(this.string);
+      }
     catch (URISyntaxException x)
-    {
-      // Should not happen.
-      throw new RuntimeException(x);
-    }
+      {
+       // Should not happen.
+       throw new RuntimeException(x);
+      }
   }
 
   private void writeObject(ObjectOutputStream os) throws IOException
@@ -618,7 +618,7 @@ public final class URI implements Comparable, Serializable
    */
   public boolean isAbsolute()
   {
-    return (scheme != null);
+    return scheme != null;
   }
 
   /**
index 89a0be69823da033dbdb878b91b1ddb38dc4f77d..f170d7373d19619127c1e0d4aea6d1458ca0add3 100644 (file)
@@ -41,7 +41,7 @@ package java.net;
 /**
  * This exception is thrown when a String cannot be parsed as a URI.
  *
- * @author Eric Blake <ebb9@email.byu.edu>
+ * @author Eric Blake (ebb9@email.byu.edu)
  * @see URI
  * @since 1.4
  * @status updated to 1.4
index 7bbbd982deb8a228bd73ac5621f58337673bc486..0817126da101ae3a9e9d0048e87f16c8cd16183a 100644 (file)
@@ -39,13 +39,14 @@ exception statement from your version. */
 package java.net;
 
 import gnu.java.net.URLParseError;
-import java.security.AccessController;
-import java.security.PrivilegedAction;
+
 import java.io.IOException;
 import java.io.InputStream;
 import java.io.ObjectInputStream;
 import java.io.ObjectOutputStream;
 import java.io.Serializable;
+import java.security.AccessController;
+import java.security.PrivilegedAction;
 import java.util.HashMap;
 import java.util.StringTokenizer;
 
@@ -116,8 +117,8 @@ import java.util.StringTokenizer;
   * done, then the above information is superseded and the behavior of this
   * class in loading protocol handlers is dependent on that factory.
   *
-  * @author Aaron M. Renn <arenn@urbanophile.com>
-  * @author Warren Levy <warrenl@cygnus.com>
+  * @author Aaron M. Renn (arenn@urbanophile.com)
+  * @author Warren Levy (warrenl@cygnus.com)
   *
   * @see URLStreamHandler
   */
index d2c403a585f9bd7818c059187952cb241b76b86b..f9ae588f26d95e79d83375931a1146a025eea3b7 100644 (file)
@@ -57,7 +57,7 @@ import java.io.UnsupportedEncodingException;
  *
  * @since 1.2
  *
- * @author Warren Levy <warrenl@cygnus.com>
+ * @author Warren Levy (warrenl@cygnus.com)
  * @author Aaron M. Renn (arenn@urbanophile.com) (documentation comments)
  * @author Mark Wielaard (mark@klomp.org)
  */
index fbabb0f89b8532fd4dd62b9ebb3a0aa9ce45550b..75127af1a0f0a9c43cf6bc60c46dabc5f40813d8 100644 (file)
@@ -60,7 +60,7 @@ import java.io.UnsupportedEncodingException;
  * This method is very useful for encoding strings to be sent to CGI scripts
  *
  * @author Aaron M. Renn (arenn@urbanophile.com)
- * @author Warren Levy <warrenl@cygnus.com>
+ * @author Warren Levy (warrenl@cygnus.com)
  * @author Mark Wielaard (mark@klomp.org)
  */
 public class URLEncoder
index aca62612f663dab9612cb973822f5d328e0e9578..2e91eb64014d9a853edaff82563d9c0e0f5be4b7 100644 (file)
@@ -180,8 +180,8 @@ public abstract class URLStreamHandler
              }
            catch (NumberFormatException e)
              {
-               // Ignore invalid port values; port is already set to u's
-                 // port.
+               // Ignore invalid port values; port is already set to u's
+               // port.
              }
 
            // Now we must cut the port number in the original string.
index f43828cc5e943b850c1d6871c2354fd981ccdf9f..ce6ba89c5e61b58364bede1e7444f30958c845ab 100644 (file)
@@ -49,7 +49,7 @@ package java.net;
  * <code>URLStreamHandler</code> object.
  *
  * @author Aaron M. Renn (arenn@urbanophile.com)
- * @author Warren Levy <warrenl@cygnus.com>
+ * @author Warren Levy (warrenl@cygnus.com)
  */
 public interface URLStreamHandlerFactory
 {
index fefdadcd50fd5d02239e793909a2f45807ed7b49..39eb94c09f0c49afadebde98334d5e74f9181ae1 100644 (file)
@@ -46,7 +46,7 @@ import java.io.IOException;
  * DNS problem has occurred, but most often means that the host was not
  * correctly specified.
  *
- * @author Aaron M. Renn <arenn@urbanophile.com>
+ * @author Aaron M. Renn (arenn@urbanophile.com)
  * @author Per Bothner
  * @status updated to 1.4
  */
index 8cf1909f774b5cd62e0ddfb97eeeb0528d5053b1..12f16f506ad3ce21ec3098fafe1aabcd9f898ea6 100644 (file)
@@ -46,8 +46,8 @@ import java.io.IOException;
  * the MIME type returned from a URL could not be determined or that an
  * attempt was made to write to a read-only URL.
  *
- * @author Aaron M. Renn <arenn@urbanophile.com>
- * @author Warren Levy <warrenl@cygnus.com>
+ * @author Aaron M. Renn (arenn@urbanophile.com)
+ * @author Warren Levy (warrenl@cygnus.com)
  * @status updated to 1.4
  */
 public class UnknownServiceException extends IOException
This page took 0.105473 seconds and 5 git commands to generate.