Flag English specific stopwords for cleanupp

This commit is contained in:
Tom Morris 2013-03-18 20:20:46 -04:00
parent 6b69427cbb
commit fe943fe3ea

View File

@ -456,6 +456,7 @@ public class StandardReconConfig extends ReconConfig {
static final protected Set<String> s_stopWords = new HashSet<String>();
static {
// FIXME: This is English specific
s_stopWords.add("the");
s_stopWords.add("a");
s_stopWords.add("and");