mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-17 18:17:43 +00:00
added method comment
This commit is contained in:
parent
420eee58c6
commit
d4afaefe92
@ -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<String> getUniqueTagNames(long artifactId) throws SQLException {
|
private HashSet<String> getUniqueTagNames(long artifactId) throws SQLException {
|
||||||
HashSet<String> uniqueTagNames = new HashSet<>();
|
HashSet<String> uniqueTagNames = new HashSet<>();
|
||||||
ResultSet tagNameRows = skCase.runQuery("SELECT display_name, artifact_id FROM tag_names AS tn, blackboard_artifact_tags AS bat " + //NON-NLS
|
ResultSet tagNameRows = skCase.runQuery("SELECT display_name, artifact_id FROM tag_names AS tn, blackboard_artifact_tags AS bat " + //NON-NLS
|
||||||
|
Loading…
x
Reference in New Issue
Block a user