Слияние кода завершено, страница обновится автоматически
private final static List<String> nowords = new ArrayList<String>(){{
try{
addAll(IOUtils.readLines(SearchHelper.class.getResourceAsStream("/stopword.dic")));
}catch(IOException e){
log.error("Unabled to read stopword file", e);
}
}};
i do not know how to use ?