aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/lang/Double.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2004-04-20 12:30:19 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2004-04-20 12:30:19 +0000
commitcf6f7d55897e0c6b1badbcfc241e512a4bb154b8 (patch)
treed5b22b275323c4e4a0c6ebb05e86b4a087ef279d /libjava/java/lang/Double.java
parent9f714d5eec05594569dd89920353272606622d8a (diff)
downloadgcc-cf6f7d55897e0c6b1badbcfc241e512a4bb154b8.zip
gcc-cf6f7d55897e0c6b1badbcfc241e512a4bb154b8.tar.gz
gcc-cf6f7d55897e0c6b1badbcfc241e512a4bb154b8.tar.bz2
Byte.java, [...]: Fixed javadocs, coding style and argument names all over.
2004-04-20 Michael Koch <konqueror@gmx.de> * 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. From-SVN: r80899
Diffstat (limited to 'libjava/java/lang/Double.java')
-rw-r--r--libjava/java/lang/Double.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/libjava/java/lang/Double.java b/libjava/java/lang/Double.java
index 95ee4ec..be393b6 100644
--- a/libjava/java/lang/Double.java
+++ b/libjava/java/lang/Double.java
@@ -1,5 +1,6 @@
/* Double.java -- object wrapper for double
- Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+ Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003
+ Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -35,7 +36,6 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
-
package java.lang;
import gnu.classpath.Configuration;
@@ -243,7 +243,7 @@ public final class Double extends Number implements Comparable
* @see #NEGATIVE_INFINITY
* @since 1.2
*/
- public static native double parseDouble(String s);
+ public static native double parseDouble(String str);
/**
* Return <code>true</code> if the <code>double</code> has the same
@@ -392,9 +392,9 @@ public final class Double extends Number implements Comparable
* <code>Double.NaN</code> as equal, but treats <code>0.0</code> and
* <code>-0.0</code> as unequal.
*
- * <p>Note that <code>d1.equals(d2)<code> is identical to
+ * <p>Note that <code>d1.equals(d2)</code> is identical to
* <code>doubleToLongBits(d1.doubleValue()) ==
- * doubleToLongBits(d2.doubleValue())<code>.
+ * doubleToLongBits(d2.doubleValue())</code>.
*
* @param obj the object to compare
* @return whether the objects are semantically equal