- change order of display
This commit is contained in:
parent
d58075a93c
commit
db117bf736
|
@ -137,6 +137,6 @@ public class PodHistory implements DbObjectBase, Comparable<PodHistory> {
|
|||
|
||||
@Override
|
||||
public int compareTo(PodHistory otherOne) {
|
||||
return (int) (this.date - otherOne.date);
|
||||
return (int) (otherOne.date - this.date);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue