Re-merges with Classpath, from various people:

* java/lang/Double.java (parseDouble): Fixed ordering of
	modifiers.
	* java/lang/reflect/AccessibleObject.java: Javadoc, reindented.
	* java/lang/reflect/Member.java: Reindented.
	* java/lang/reflect/Modifier.java: Reindented.
	(toString): Only trim trailing space if text was added to
	StringBuffer.
	* java/util/ConcurrentModificationException.java: Javadoc
	updates.
	* java/util/EmptyStackException.java: Likewise.
	* java/util/NoSuchElementException.java: Likewise.

From-SVN: r47018
This commit is contained in:
Tom Tromey 2001-11-14 19:11:52 +00:00 committed by Tom Tromey
parent b5c02bff5c
commit 852d3dad0d
7 changed files with 230 additions and 88 deletions

View file

@ -504,7 +504,7 @@ public final class Double extends Number implements Comparable
* @see #NEGATIVE_INFINITY
* @since 1.2
*/
public native static double parseDouble (String s)
public static native double parseDouble (String s)
throws NumberFormatException;
/**