remove redundant toLower for topwords

pull/1/head
reger 10 years ago
parent a34f837592
commit de56266bcb

@ -1786,7 +1786,7 @@ public final class SearchEvent {
protected void addTopics(final ResultEntry resultEntry) {
// take out relevant information for reference computation
if ((resultEntry.url() == null) || (resultEntry.title() == null)) return;
final String[] descrcomps = MultiProtocolURL.splitpattern.split(resultEntry.title().toLowerCase()); // words in the description
final String[] descrcomps = MultiProtocolURL.splitpattern.split(resultEntry.title()); // words in the description
// add references
addTopic(descrcomps);

Loading…
Cancel
Save