--- old/src/java.desktop/share/classes/javax/swing/JTable.java 2014-12-09 10:07:03.577095458 -0800 +++ new/src/java.desktop/share/classes/javax/swing/JTable.java 2014-12-09 10:07:03.401095450 -0800 @@ -5810,6 +5810,7 @@ * where 0 is the first column * @return the Component being edited */ + @SuppressWarnings("deprecation") public Component prepareEditor(TableCellEditor editor, int row, int column) { Object value = getValueAt(row, column); boolean isSelected = isCellSelected(row, column); @@ -8788,6 +8789,7 @@ } } + @SuppressWarnings("deprecation") public boolean isFocusTraversable() { AccessibleContext ac = getCurrentAccessibleContext(); if (ac instanceof AccessibleComponent) { @@ -9640,6 +9642,7 @@ * @see AccessibleState#FOCUSED * @see AccessibleStateSet */ + @SuppressWarnings("deprecation") public boolean isFocusTraversable() { AccessibleContext ac = getCurrentAccessibleContext(); if (ac instanceof AccessibleComponent) {