From e9a9eeab6b1ccde90bacfadc577d14c99f8fc46f Mon Sep 17 00:00:00 2001 From: adam-m Date: Fri, 7 Dec 2012 13:19:45 -0500 Subject: [PATCH] do not display column with id of artifact in tag in results table --- .../sleuthkit/autopsy/datamodel/BlackboardArtifactNode.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/datamodel/BlackboardArtifactNode.java b/Core/src/org/sleuthkit/autopsy/datamodel/BlackboardArtifactNode.java index 5354dd0c50..8493dc2cc5 100644 --- a/Core/src/org/sleuthkit/autopsy/datamodel/BlackboardArtifactNode.java +++ b/Core/src/org/sleuthkit/autopsy/datamodel/BlackboardArtifactNode.java @@ -124,7 +124,10 @@ public class BlackboardArtifactNode extends DisplayableItemNode { try { for (BlackboardAttribute attribute : artifact.getAttributes()) { final int attributeTypeID= attribute.getAttributeTypeID(); - if (attributeTypeID == ATTRIBUTE_TYPE.TSK_PATH_ID.getTypeID()) { + //skip some internal attributes that user shouldn't see + if (attributeTypeID == ATTRIBUTE_TYPE.TSK_PATH_ID.getTypeID() + || attributeTypeID == ATTRIBUTE_TYPE.TSK_TAGGED_ARTIFACT.getTypeID()) + { continue; } else { switch (attribute.getValueType()) {