mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-17 18:17:43 +00:00
Recognized that exception thrown by getValue is ignored
This commit is contained in:
parent
e35faceb08
commit
f126b5a23a
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user