fix SimpleCopyJob.compareTo test bug

This commit is contained in:
Mike McCandless 2016-08-02 05:09:28 -04:00
parent 81236ba48a
commit dcbc49b06a
1 changed files with 2 additions and 0 deletions

View File

@ -118,6 +118,8 @@ class SimpleCopyJob extends CopyJob {
return highPriority ? -1 : 1;
} else if (ord < other.ord) {
return -1;
} else if (ord > other.ord) {
return 1;
} else {
return 0;
}