diff -r 52d3d8517efc -r 9cb6e1141bdb jdk/src/java.base/share/classes/java/lang/IndexOutOfBoundsException.java --- a/jdk/src/java.base/share/classes/java/lang/IndexOutOfBoundsException.java Wed Apr 13 15:05:49 2016 +0200 +++ b/jdk/src/java.base/share/classes/java/lang/IndexOutOfBoundsException.java Wed Apr 13 15:05:50 2016 +0200 @@ -67,21 +67,4 @@ public IndexOutOfBoundsException(int index) { super("Index out of range: " + index); } - - /** - * Constructs an {@code IndexOutOfBoundsException} 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 IndexOutOfBoundsException(int a, int b) { - super("Indexed access out of bounds: " + a + ", " + b); - } - }