--- old/src/share/classes/javax/swing/plaf/ListUI.java 2014-06-30 09:09:38.000000000 -0700 +++ new/src/share/classes/javax/swing/plaf/ListUI.java 2014-06-30 09:09:38.000000000 -0700 @@ -50,7 +50,7 @@ * @return the cell index closest to the given location, or {@code -1} * @throws NullPointerException if {@code location} is null */ - public abstract int locationToIndex(JList list, Point location); + public abstract int locationToIndex(JList list, Point location); /** @@ -62,7 +62,7 @@ * @param index the cell index * @return the origin of the cell, or {@code null} */ - public abstract Point indexToLocation(JList list, int index); + public abstract Point indexToLocation(JList list, int index); /** @@ -80,5 +80,5 @@ * @param index2 the second index in the range * @return the bounding rectangle for the range of cells, or {@code null} */ - public abstract Rectangle getCellBounds(JList list, int index1, int index2); + public abstract Rectangle getCellBounds(JList list, int index1, int index2); }