1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-06 03:50:19 +02:00

Added TitleComparator.java

This commit is contained in:
lidoxod 2013-02-28 22:05:47 +04:00
parent e01f824a9a
commit e885d084f3

View file

@ -24,6 +24,6 @@ import java.util.*;
public class TitleComparator implements Comparator<Title> {
@Override
public int compare(Title title0, Title title1) {
return title0.getKeySort().compareTo(title1.getKeySort());
return title0.getSortKey().compareTo(title1.getSortKey());
}
}