Navigation Menu

Skip to content

Commit

Permalink
0002302: AckUriHandler has an incorrect Comparator code
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed May 19, 2015
1 parent 1f1d333 commit d1b0f1a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -39,7 +39,7 @@ public class AckUriHandler extends AbstractUriHandler {
private static final Comparator<BatchAck> BATCH_ID_COMPARATOR = new Comparator<BatchAck>() {
public int compare(BatchAck batchInfo1, BatchAck batchInfo2) {
Long batchId1 = batchInfo1.getBatchId();
Long batchId2 = batchInfo1.getBatchId();
Long batchId2 = batchInfo2.getBatchId();
return batchId1.compareTo(batchId2);
}
};
Expand Down

0 comments on commit d1b0f1a

Please sign in to comment.