diff options
Diffstat (limited to 'libjava/java/util/Arrays.java')
-rw-r--r-- | libjava/java/util/Arrays.java | 8 |
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 > 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) */ |