937: Accounts sub-trees do not refresh their contents

- address review comments on previous commit
This commit is contained in:
Raman 2018-01-02 08:21:27 -05:00
parent 064a874421
commit d4b5e209d5

View File

@ -1329,7 +1329,7 @@ final public class Accounts implements AutopsyVisitableItem {
BlackboardArtifact art = skCase.getBlackboardArtifact(artifactID); BlackboardArtifact art = skCase.getBlackboardArtifact(artifactID);
return new Node[]{new AccountArtifactNode(art)}; return new Node[]{new AccountArtifactNode(art)};
} catch (TskCoreException ex) { } catch (TskCoreException ex) {
LOGGER.log(Level.WARNING, "Error creating BlackboardArtifactNode for artifact with ID " + artifactID, ex); //NON-NLS LOGGER.log(Level.SEVERE, "Error creating BlackboardArtifactNode for artifact with ID " + artifactID, ex); //NON-NLS
return new Node[0]; return new Node[0];
} }
} }