diff -r 52d3d8517efc -r 9cb6e1141bdb jdk/src/java.base/share/classes/java/lang/ArrayIndexOutOfBoundsException.java --- a/jdk/src/java.base/share/classes/java/lang/ArrayIndexOutOfBoundsException.java Wed Apr 13 15:05:49 2016 +0200 +++ b/jdk/src/java.base/share/classes/java/lang/ArrayIndexOutOfBoundsException.java Wed Apr 13 15:05:50 2016 +0200 @@ -64,20 +64,4 @@ public ArrayIndexOutOfBoundsException(int index) { super("Array index out of range: " + index); } - - /** - * Constructs a new {@code ArrayIndexOutOfBoundsException} class with - * arguments indicating two out of bound values. - * - *

The out of bound values are included in this exception's detail - * message. The exact presentation format of the detail message is - * unspecified. - * - * @param a the first out of bound value. - * @param b the second out of bound value. - * @since 9 - */ - public ArrayIndexOutOfBoundsException(int a, int b) { - super("Array indexed access out of bounds: " + a + ", " + b); - } }