return synonymMap.build();
}
static private DictRadix<MorphData> loadFromClasspath(final String pathInClasspath) {
try {
Loader loader = new Loader(Thread.currentThread().getContextClassLoader(), pathInClasspath, true);
return loader.loadDictionaryFromHSpellData();
} catch (IOException ex) {
try {
// Try to use environment variable if failed with classpath
return loadFromEnvVariable();
} catch (IOException e) {