diff --git a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/IndexMetadata.java b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/IndexMetadata.java index 381ecb7dfa..99dfd28c2d 100644 --- a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/IndexMetadata.java +++ b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/IndexMetadata.java @@ -85,18 +85,13 @@ public class IndexMetadata { * @throws TextIndexMetadataException If the new text index metadata file cannot be * read. */ - public IndexMetadata(String caseDirectory) throws TextIndexMetadataException { + IndexMetadata(String caseDirectory) throws TextIndexMetadataException { this.metadataFilePath = Paths.get(caseDirectory, metadataFileName); readFromFile(); } - - /** - * Gets the full path to the case metadata file. - * - * @return The path to the metadata file - */ - Path getFilePath() { - return metadataFilePath; + + List getIndexes() { + return indexes; } /**