.toString()));
Iterator<String> it = hash.keySet().iterator();
while (it.hasNext()) {
String phrase = it.next();
Counter counter = (Counter) m_KEAFilter.m_Dictionary.get(phrase);
if (counter == null) {
m_KEAFilter.m_Dictionary.put(phrase, new Counter());
} else {
counter.increment();
}
}
}
}