diff --git a/Core/src/org/sleuthkit/autopsy/communications/relationships/ContactNode.java b/Core/src/org/sleuthkit/autopsy/communications/relationships/ContactNode.java index 33b9d16724..985351ce10 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()); @@ -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;