From f6d49f66ec0e0a59285d304720cc3bfa18f28141 Mon Sep 17 00:00:00 2001 From: Michael Koch Date: Tue, 20 Apr 2004 13:05:10 +0000 Subject: Authenticator.java, [...]: Fixed javadocs, coding style and argument names all over. 2004-04-20 Michael Koch * java/net/Authenticator.java, 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/Inet4Address.java, java/net/Inet6Address.java, java/net/InetAddress.java, java/net/InetSocketAddress.java, java/net/JarURLConnection.java, java/net/MalformedURLException.java, java/net/MulticastSocket.java, java/net/NetPermission.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/SocketAddress.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/URLClassLoader.java, java/net/URLConnection.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: Fixed javadocs, coding style and argument names all over. From-SVN: r80900 --- libjava/java/net/PasswordAuthentication.java | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'libjava/java/net/PasswordAuthentication.java') diff --git a/libjava/java/net/PasswordAuthentication.java b/libjava/java/net/PasswordAuthentication.java index 97554e3..910803a 100644 --- a/libjava/java/net/PasswordAuthentication.java +++ b/libjava/java/net/PasswordAuthentication.java @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -37,6 +37,7 @@ exception statement from your version. */ package java.net; + /** * This class serves a container for username/password pairs. * @@ -50,7 +51,7 @@ public final class PasswordAuthentication */ /** - * The username + * The username */ private String username; @@ -66,7 +67,7 @@ public final class PasswordAuthentication */ /** - * Creates a new PasswordAuthentication object from the + * Creates a new PasswordAuthentication object from the * specified username and password. * * @param username The username for this object @@ -91,9 +92,9 @@ public final class PasswordAuthentication */ public String getUserName() { - return(username); + return (username); } - + /** * Returns the password associated with this object * @@ -101,8 +102,6 @@ public final class PasswordAuthentication */ public char[] getPassword() { - return(password); + return (password); } - } // class PasswordAuthentication - -- cgit v1.1