diff --git a/Core/src/org/sleuthkit/autopsy/datamodel/Tags.java b/Core/src/org/sleuthkit/autopsy/datamodel/Tags.java index 330feb8acf..d1673a4d09 100644 --- a/Core/src/org/sleuthkit/autopsy/datamodel/Tags.java +++ b/Core/src/org/sleuthkit/autopsy/datamodel/Tags.java @@ -122,7 +122,7 @@ public class Tags { * Get a list of all the tag names. * @return a list of all tag names. */ - static String[] getTagNames() { + public static String[] getTagNames() { Set names = new HashSet(); //List names = new ArrayList(); try { @@ -153,7 +153,7 @@ public class Tags { * @param name of the requested tags * @return a list of all tag artifacts with the given name */ - static List getTagsByName(String name) { + public static List getTagsByName(String name) { try { Case currentCase = Case.getCurrentCase(); SleuthkitCase skCase = currentCase.getSleuthkitCase();