OSDN Git Service

2004-10-17 Michael Koch <konqueror@gmx.de>
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 17 Oct 2004 08:29:57 +0000 (08:29 +0000)
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 17 Oct 2004 08:29:57 +0000 (08:29 +0000)
* 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.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89168 138bc75d-0d04-0410-961f-82ee72b054a4

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 9c1d187..fb55ee6 100644 (file)
@@ -1,5 +1,43 @@
 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,
        gnu/java/security/provider/DSAParameters.java,
        gnu/java/security/provider/DSASignature.java,
index 00885e8..fcb4f9d 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 2dd35e7..2a3ec94 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 5e3de23..a3b946c 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 cdfbca2..fa8e818 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 549a360..087a806 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 c84efda..e00425f 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 0c21e24..b48019f 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 16a0a2e..5476457 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 fbc6059..37033c2 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 e603d2b..c4c9937 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 c9a50fa..6fdf12a 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 c177531..65e6325 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 ab6d7b4..defd348 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 d133893..5427fb5 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 910803a..671783d 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 def0263..f3ba17b 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 d058113..7f14ab2 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 e507f0b..b0576bf 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 80caced..bebd73d 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 6b86360..f130d52 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 8cfb9ef..4016a2f 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 84e92a5..99374de 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 7ccd887..b266919 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 e9d1402..0cd18c7 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 e375065..35bae90 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 dc95e6e..01381cd 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 89a0be6..f170d73 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 7bbbd98..0817126 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 d2c403a..f9ae588 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 fbabb0f..75127af 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 aca6261..2e91eb6 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 f43828c..ce6ba89 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 fefdadc..39eb94c 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 8cf1909..12f16f5 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