ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/loops/PriorityQueueSort.java
(Generate patch)

Comparing jsr166/src/test/loops/PriorityQueueSort.java (file contents):
Revision 1.4 by jsr166, Thu Oct 29 23:09:07 2009 UTC vs.
Revision 1.5 by jsr166, Mon Nov 2 23:51:32 2009 UTC

# Line 14 | Line 14 | public class PriorityQueueSort {
14  
15      static class MyComparator implements Comparator<Integer> {
16          public int compare(Integer x, Integer y) {
17 <            int i = ((Integer)x).intValue();
18 <            int j = ((Integer)y).intValue();
17 >            int i = x;
18 >            int j = y;
19              if (i < j) return -1;
20              if (i > j) return 1;
21              return 0;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines