--- old/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicFileChooserUI.java 2014-12-09 10:07:08.369095670 -0800 +++ new/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicFileChooserUI.java 2014-12-09 10:07:08.209095663 -0800 @@ -502,6 +502,7 @@ public void mouseReleased(MouseEvent evt) { } + @SuppressWarnings("deprecation") public void valueChanged(ListSelectionEvent evt) { if(!evt.getValueIsAdjusting()) { JFileChooser chooser = getFileChooser(); @@ -1305,6 +1306,7 @@ * @return The representation of the data to be transfered. * */ + @SuppressWarnings("deprecation") protected Transferable createTransferable(JComponent c) { Object[] values = null; if (c instanceof JList) {