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")) {
try {
tagFound = !prop.getValue().equals("");
} catch (IllegalAccessException | InvocationTargetException ex) {
Exceptions.printStackTrace(ex);
} catch (IllegalAccessException | InvocationTargetException ignore) {
}
break;
}