diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-27 00:53:42 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-27 00:53:42 +0000 |
commit | 34051218ef9aea5c7e4719064eb517abd2c639b6 (patch) | |
tree | 2c4c3ccf2fb6b6d76d5c6a65bb330b3f7cd3d09c /libjava | |
parent | ef05f29fbd89b64576af4c91e525c31e6a48801c (diff) | |
download | gcc-34051218ef9aea5c7e4719064eb517abd2c639b6.tar.gz |
* java/net/Authenticator.java: New version from Classpath.
* java/net/DatagramSocketImpl.java: New version from Classpath.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55789 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava')
-rw-r--r-- | libjava/ChangeLog | 5 | ||||
-rw-r--r-- | libjava/java/net/Authenticator.java | 8 | ||||
-rw-r--r-- | libjava/java/net/DatagramSocketImpl.java | 9 |
3 files changed, 14 insertions, 8 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index d740a7321d4..0dc7a82223e 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -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. diff --git a/libjava/java/net/Authenticator.java b/libjava/java/net/Authenticator.java index e056259741d..8dbf0f7c18c 100644 --- a/libjava/java/net/Authenticator.java +++ b/libjava/java/net/Authenticator.java @@ -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 diff --git a/libjava/java/net/DatagramSocketImpl.java b/libjava/java/net/DatagramSocketImpl.java index df6e1ecbf46..e929e5006ff 100644 --- a/libjava/java/net/DatagramSocketImpl.java +++ b/libjava/java/net/DatagramSocketImpl.java @@ -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> */ |