From f126b5a23a6359fdd2ffd4bb560b1a33e3ba72db Mon Sep 17 00:00:00 2001 From: Sophie Mori Date: Tue, 25 Oct 2016 14:33:56 -0400 Subject: [PATCH] Recognized that exception thrown by getValue is ignored --- .../autopsy/corecomponents/DataResultViewerTable.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/corecomponents/DataResultViewerTable.java b/Core/src/org/sleuthkit/autopsy/corecomponents/DataResultViewerTable.java index 57ff03168f..7a1bd8acf4 100644 --- a/Core/src/org/sleuthkit/autopsy/corecomponents/DataResultViewerTable.java +++ b/Core/src/org/sleuthkit/autopsy/corecomponents/DataResultViewerTable.java @@ -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; }