.getResourceObject(HYPH_FREQ_TABLE_RESRC_KEY);
if (strIntMapResrc == null) {
logger.warn("Unable to locate resource with key="
+ HYPH_FREQ_TABLE_RESRC_KEY
+ ". Proceeding without hyphenation support.");
tokenizer = new Tokenizer();
} else {
logger.info("Hyphen dictionary: " + strIntMapResrc.toString());
Map<String, Integer> hyphMap = strIntMapResrc.getMap();
tokenizer = new Tokenizer(hyphMap, freqCutoff);
}
}