RuntimeException.java: Re-merge with Classpath.

* java/lang/RuntimeException.java: Re-merge with Classpath.
	* java/util/ArrayList.java: Likewise.
	* java/util/Arrays.java: Likewise.
	* java/util/BitSet.java: Likewise.
	* java/util/Dictionary.java: Likewise.
	* java/util/IdentityHashMap.java: Likewise.
	* java/util/MissingResourceException.java: Likewise.
	* java/util/Observer.java: Likewise.
	* java/util/TooManyListenersException.java: Likewise.
	* java/util/zip/DataFormatException.java: Likewise.
	* java/util/zip/ZipException.java: Likewise.

From-SVN: r54680
This commit is contained in:
Tom Tromey 2002-06-16 21:15:44 +00:00 committed by Tom Tromey
parent 3d05b15f10
commit 548ce8be4a
12 changed files with 202 additions and 130 deletions

View file

@ -2205,9 +2205,9 @@ public class Arrays
* comparable
* @throws NullPointerException if an element is null (since
* null.compareTo cannot work)
* @throws ArrayIndexOutOfBoundsException, if fromIndex and toIndex
* @throws ArrayIndexOutOfBoundsException if fromIndex and toIndex
* are not in range.
* @throws IllegalArgumentException if fromIndex > toIndex
* @throws IllegalArgumentException if fromIndex > toIndex
*/
public static void sort(Object[] a, int fromIndex, int toIndex)
{
@ -2229,9 +2229,9 @@ public class Arrays
* the elements' natural order
* @throws ClassCastException if any two elements are not mutually
* comparable by the Comparator provided
* @throws ArrayIndexOutOfBoundsException, if fromIndex and toIndex
* @throws ArrayIndexOutOfBoundsException if fromIndex and toIndex
* are not in range.
* @throws IllegalArgumentException if fromIndex > toIndex
* @throws IllegalArgumentException if fromIndex > toIndex
* @throws NullPointerException if a null element is compared with natural
* ordering (only possible when c is null)
*/