Feed title comparison is now case-insensitive

This commit is contained in:
daniel oeh 2012-07-24 21:31:40 +02:00
parent d593d12e23
commit ef0ed07273
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ public class FeedtitleComparator implements Comparator<Feed> {
@Override
public int compare(Feed lhs, Feed rhs) {
return lhs.getTitle().compareTo(rhs.getTitle());
return lhs.getTitle().compareToIgnoreCase(rhs.getTitle());
}
}