// log concept file path
this.logger.logrb(Level.CONFIG, "DictionaryAnnotator", "initialize", MESSAGE_DIGEST,
"dictionary_annotator_dictionary_file", new Object[] { file.getFilePath() });
// parse dictionary file
Dictionary dict = fileParser.parseDictionaryFile(file.getFilePath(), file.getStream(),
new HashMapDictionaryBuilder());
// add dictionary to the dictionary list
dicts.add(dict);
}
}