]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Authenticator.java: New version from Classpath.
authorTom Tromey <tromey@redhat.com>
Sat, 27 Jul 2002 00:53:42 +0000 (00:53 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Sat, 27 Jul 2002 00:53:42 +0000 (00:53 +0000)
* java/net/Authenticator.java: New version from Classpath.
* java/net/DatagramSocketImpl.java: New version from Classpath.

From-SVN: r55789

libjava/ChangeLog
libjava/java/net/Authenticator.java
libjava/java/net/DatagramSocketImpl.java

index d740a7321d43254ca33b4d36e880503581f2a5b5..0dc7a82223e06f4f019121d38658c11d856eaa35 100644 (file)
@@ -1,3 +1,8 @@
+2002-07-26  Tom Tromey  <tromey@redhat.com>
+
+       * java/net/Authenticator.java: New version from Classpath.
+       * java/net/DatagramSocketImpl.java: New version from Classpath.
+
 2002-07-27  Alan Modra  <amodra@bigpond.net.au>
 
        * configure.host: Add powerpc64*-* entry.
index e056259741deaa8c4836f6ab9bd249e11862b579..8dbf0f7c18c5b4ff2f1ccafae3770c65e16c2144 100644 (file)
@@ -38,10 +38,10 @@ exception statement from your version. */
 package java.net;
 
 /**
-  * Sometimes a network operation (such as hitting a password protected
-  * web site) will require authentication information in the form of a
-  * username and password.  This abstract class provides a model for 
-  * obtaining that information.
+  * This abstract class provides a model for obtaining authentication
+  * information (in the form of a username and password) required by
+  * some network operations (such as hitting a password protected
+  * web site).
   * <p>
   * To make use of this feature, a programmer must create a subclass of
   * Authenticator that knows how to obtain the necessary info.  An example
index df6e1ecbf464607070636c8b11f795e08982d745..e929e5006ffce3e4f5fa1a217cf1814bb6a103d1 100644 (file)
@@ -42,14 +42,15 @@ import java.io.IOException;
 import java.io.FileDescriptor;
 
 /**
+ * This abstract class models a datagram socket implementation.  An
+ * actual implementation class would implement these methods, probably
+ * via redirecting them to native code.
+ * <p>
  * Written using on-line Java Platform 1.2 API Specification, as well
  * as "The Java Class Libraries", 2nd edition (Addison-Wesley, 1998).
+ * <p>
  * Status:  Believed complete and correct.
  *
- * <p>This abstract class models a datagram socket implementation.  An
- * actual implementation class would implement these methods, probably
- * via redirecting them to native code.
- *
  * @author Aaron M. Renn (arenn@urbanophile.com)
  * @author Warren Levy <warrenl@cygnus.com>
  */