summaryrefslogtreecommitdiffstats
path: root/libjava/java/util/Arrays.java
diff options
context:
space:
mode:
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2002-06-16 21:15:44 +0000
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2002-06-16 21:15:44 +0000
commit247711d3b869d5b81e72f4d0aa4b5170a6059a60 (patch)
treed91d4df026dc21bcf38db7c9f56a8deeaa7301c0 /libjava/java/util/Arrays.java
parent493529eb02c713e09f09633dfffbe5f54fbc23b2 (diff)
downloadppe42-gcc-247711d3b869d5b81e72f4d0aa4b5170a6059a60.tar.gz
ppe42-gcc-247711d3b869d5b81e72f4d0aa4b5170a6059a60.zip
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54680 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/util/Arrays.java')
-rw-r--r--libjava/java/util/Arrays.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/java/util/Arrays.java b/libjava/java/util/Arrays.java
index 8126cf26410..35e0e92ca59 100644
--- a/libjava/java/util/Arrays.java
+++ b/libjava/java/util/Arrays.java
@@ -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 &gt; 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 &gt; toIndex
* @throws NullPointerException if a null element is compared with natural
* ordering (only possible when c is null)
*/
OpenPOWER on IntegriCloud