I got the sort by size thing backwards?

pull/14/head
Tim Su 17 years ago
parent ac04e1c693
commit 41c02d743e

@ -104,7 +104,7 @@ public class TagList extends Activity {
SIZE { SIZE {
@Override @Override
int compareTo(TagList self, TagModelForView arg0, TagModelForView arg1) { int compareTo(TagList self, TagModelForView arg0, TagModelForView arg1) {
return self.tagToTaskCount.get(arg0) - self.tagToTaskCount.get(arg1); return self.tagToTaskCount.get(arg1) - self.tagToTaskCount.get(arg0);
} }
}; };

Loading…
Cancel
Save