From 3f8d5727c9dfaaee940c69061396a5f19c6c9dba Mon Sep 17 00:00:00 2001 From: Kelly Kelly Date: Tue, 17 Sep 2019 14:56:08 -0400 Subject: [PATCH 1/2] Removed call to super.createSheet. --- .../autopsy/communications/relationships/ContactNode.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/communications/relationships/ContactNode.java b/Core/src/org/sleuthkit/autopsy/communications/relationships/ContactNode.java index 33b9d16724..462bb6f8fa 100755 --- a/Core/src/org/sleuthkit/autopsy/communications/relationships/ContactNode.java +++ b/Core/src/org/sleuthkit/autopsy/communications/relationships/ContactNode.java @@ -70,7 +70,7 @@ final class ContactNode extends BlackboardArtifactNode { @Override protected Sheet createSheet() { - Sheet sheet = super.createSheet(); + Sheet sheet = new Sheet(); final BlackboardArtifact artifact = getArtifact(); BlackboardArtifact.ARTIFACT_TYPE fromID = BlackboardArtifact.ARTIFACT_TYPE.fromID(artifact.getArtifactTypeID()); From 3a50acb90003e728ae45036b9f87c7fda578f670 Mon Sep 17 00:00:00 2001 From: Kelly Kelly Date: Wed, 18 Sep 2019 10:42:39 -0400 Subject: [PATCH 2/2] cleaned up ContactNode --- .../autopsy/communications/relationships/ContactNode.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/communications/relationships/ContactNode.java b/Core/src/org/sleuthkit/autopsy/communications/relationships/ContactNode.java index 462bb6f8fa..985351ce10 100755 --- a/Core/src/org/sleuthkit/autopsy/communications/relationships/ContactNode.java +++ b/Core/src/org/sleuthkit/autopsy/communications/relationships/ContactNode.java @@ -116,10 +116,6 @@ final class ContactNode extends BlackboardArtifactNode { sheetSet.put(new NodeProperty<>(bba.getAttributeType().getTypeName(), bba.getAttributeType().getDisplayName(), "", bba.getDisplayString())); } - // Don't need these values to appear in the Contact property sheet. - sheetSet.remove("S"); - sheetSet.remove("C"); - List children = artifact.getChildren(); if(children != null) { int count = 0;