3408 log exception which was being ignored when path not in case table

This commit is contained in:
William Schaefer 2018-01-10 17:29:10 -05:00
parent 8f7491eb9b
commit b3c98ab2c0

View File

@ -130,7 +130,7 @@ class CaseBrowser extends javax.swing.JPanel implements ExplorerManager.Provider
try { try {
return ((Node.Property) outline.getModel().getValueAt(outline.convertRowIndexToModel(selectedRows[0]), originalPathColumnIndex)).getValue().toString(); return ((Node.Property) outline.getModel().getValueAt(outline.convertRowIndexToModel(selectedRows[0]), originalPathColumnIndex)).getValue().toString();
} catch (IllegalAccessException | InvocationTargetException ex) { } catch (IllegalAccessException | InvocationTargetException ex) {
//WJS-TODO THROW SOMETHING LOGGER.log(Level.SEVERE, "Unable to get case path from table.", ex);
} }
} }
return null; return null;