From ec55bd233aae78967918d8ee84be2ba8ca468c78 Mon Sep 17 00:00:00 2001 From: mkoch Date: Tue, 20 Apr 2004 12:30:19 +0000 Subject: 2004-04-20 Michael Koch * java/lang/Byte.java, java/lang/CharSequence.java, java/lang/ClassLoader.java, java/lang/Compiler.java, java/lang/Double.java, java/lang/Float.java, java/lang/Integer.java, java/lang/Long.java, java/lang/Math.java, java/lang/Number.java, java/lang/Package.java, java/lang/Runtime.java, java/lang/RuntimePermission.java, java/lang/SecurityManager.java, java/lang/Short.java, java/lang/StringBuffer.java, java/lang/System.java, java/lang/ThreadGroup.java, java/lang/Throwable.java, java/lang/reflect/InvocationHandler.java, java/lang/reflect/Proxy.java: Fixed javadocs, coding style and argument names all over. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@80899 138bc75d-0d04-0410-961f-82ee72b054a4 --- libjava/java/lang/Long.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libjava/java/lang/Long.java') diff --git a/libjava/java/lang/Long.java b/libjava/java/lang/Long.java index 1420e58d6c4..012cc9c93e7 100644 --- a/libjava/java/lang/Long.java +++ b/libjava/java/lang/Long.java @@ -223,9 +223,9 @@ public final class Long extends Number implements Comparable * 'L' as the last character is only valid in radices 22 or greater, where * it is a digit and not a type indicator. * - * @param s the String to convert + * @param str the String to convert * @param radix the radix (base) to use in the conversion - * @return the String argument converted to long + * @return the String argument converted to long * @throws NumberFormatException if s cannot be parsed as a * long */ @@ -306,7 +306,7 @@ public final class Long extends Number implements Comparable * MAX_VALUE, or an exception is thrown. Note that you cannot * use a trailing 'l' or 'L', unlike in Java source code. * - * @param s the String to interpret + * @param str the String to interpret * @return the value of the String as a Long * @throws NumberFormatException if s cannot be parsed as a * long @@ -455,7 +455,7 @@ public final class Long extends Number implements Comparable * interpret the value of the property. * * @param nm the name of the system property - * @param val the default value + * @param def the default value * @return the value of the system property, or the default * @throws SecurityException if accessing the system property is forbidden * @see System#getProperty(String) -- cgit v1.2.1