Recognized that exception thrown by getValue is ignored

This commit is contained in:
Sophie Mori 2016-10-25 14:33:56 -04:00
parent e35faceb08
commit f126b5a23a

View File

@ -471,8 +471,7 @@ public class DataResultViewerTable extends AbstractDataResultViewer {
if (prop.getName().equals("Tags")) { if (prop.getName().equals("Tags")) {
try { try {
tagFound = !prop.getValue().equals(""); tagFound = !prop.getValue().equals("");
} catch (IllegalAccessException | InvocationTargetException ex) { } catch (IllegalAccessException | InvocationTargetException ignore) {
Exceptions.printStackTrace(ex);
} }
break; break;
} }