From d4afaefe92a7c27ca2369843560a44568627fdb6 Mon Sep 17 00:00:00 2001 From: "Samuel H. Kenyon" Date: Wed, 23 Apr 2014 15:17:49 -0400 Subject: [PATCH] added method comment --- Core/src/org/sleuthkit/autopsy/report/ReportGenerator.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Core/src/org/sleuthkit/autopsy/report/ReportGenerator.java b/Core/src/org/sleuthkit/autopsy/report/ReportGenerator.java index 6a3a7d82b0..cd48ed2764 100644 --- a/Core/src/org/sleuthkit/autopsy/report/ReportGenerator.java +++ b/Core/src/org/sleuthkit/autopsy/report/ReportGenerator.java @@ -1658,6 +1658,12 @@ import org.sleuthkit.datamodel.TskData; } } + /** + * Get any tags associated with an artifact + * @param artifactId + * @return hash set of tag display names + * @throws SQLException + */ private HashSet getUniqueTagNames(long artifactId) throws SQLException { HashSet uniqueTagNames = new HashSet<>(); ResultSet tagNameRows = skCase.runQuery("SELECT display_name, artifact_id FROM tag_names AS tn, blackboard_artifact_tags AS bat " + //NON-NLS