From ce97e13dedadf5635b96807626bc2d005b9022bc Mon Sep 17 00:00:00 2001 From: mkoch Date: Tue, 20 Apr 2004 14:45:10 +0000 Subject: 2004-04-20 Michael Koch * java/rmi/MarshalledObject.java, java/rmi/Naming.java, java/rmi/RemoteException.java, java/rmi/activation/ActivationException.java, java/rmi/server/ServerCloneException.java, java/security/AccessController.java, java/security/AlgorithmParameterGenerator.java, java/security/AlgorithmParameters.java, java/security/CodeSource.java, java/security/Identity.java, java/security/IdentityScope.java, java/security/KeyPairGenerator.java, java/security/KeyStore.java, java/security/Security.java, java/security/Signature.java, java/security/SignatureSpi.java, java/security/SignedObject.java, java/security/spec/DSAParameterSpec.java, java/security/spec/DSAPrivateKeySpec.java, java/security/spec/DSAPublicKeySpec.java, java/sql/Array.java, java/sql/DatabaseMetaData.java, java/sql/ResultSet.java, java/text/ChoiceFormat.java, java/text/CollationElementIterator.java, java/text/CollationKey.java, java/text/Collator.java, java/text/DateFormat.java, java/text/DateFormatSymbols.java, java/text/DecimalFormatSymbols.java, java/text/Format.java, java/text/ParsePosition.java, java/text/RuleBasedCollator.java, java/text/SimpleDateFormat.java, java/text/StringCharacterIterator.java, java/util/Collections.java, java/util/PropertyResourceBundle.java, java/util/ResourceBundle.java, java/util/StringTokenizer.java, java/util/jar/Attributes.java, java/util/logging/ConsoleHandler.java, java/util/logging/LogManager.java, java/util/logging/MemoryHandler.java, java/util/logging/SocketHandler.java, javax/naming/NamingException.java: Fixed javadoc, coding style and argument names all over. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@80906 138bc75d-0d04-0410-961f-82ee72b054a4 --- libjava/java/security/AccessController.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libjava/java/security/AccessController.java') diff --git a/libjava/java/security/AccessController.java b/libjava/java/security/AccessController.java index 41ca1cec5fb..66aed9e3898 100644 --- a/libjava/java/security/AccessController.java +++ b/libjava/java/security/AccessController.java @@ -1,5 +1,5 @@ /* AccessController.java --- Access control context and permission checker - Copyright (C) 2001 Free Software Foundation, Inc. + Copyright (C) 2001, 2004 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -91,7 +91,7 @@ public final class AccessController * * @param action the PrivilegedAction whose run() * should be be called. - * @returns the result of the action.run() method. + * @return the result of the action.run() method. */ public static Object doPrivileged(PrivilegedAction action) { @@ -110,7 +110,7 @@ public final class AccessController * should be be called. * @param context the AccessControlContext whose protection * domains should be added to the protection domain of the calling class. - * @returns the result of the action.run() method. + * @return the result of the action.run() method. */ public static Object doPrivileged(PrivilegedAction action, AccessControlContext context) @@ -130,7 +130,7 @@ public final class AccessController * * @param action the PrivilegedExceptionAction whose * run() should be be called. - * @returns the result of the action.run() method. + * @return the result of the action.run() method. * @exception PrivilegedActionException wrapped around any exception that * is thrown in the run() method. */ @@ -162,7 +162,7 @@ public final class AccessController * run() should be be called. * @param context the AccessControlContext whose protection * domains should be added to the protection domain of the calling class. - * @returns the result of the action.run() method. + * @return the result of the action.run() method. * @exception PrivilegedActionException wrapped around any exception that * is thrown in the run() method. */ -- cgit v1.2.3