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

Comparing jsr166/src/test/loops/BoxedLongSort.java (file contents):
Revision 1.2 by jsr166, Mon Sep 20 20:42:37 2010 UTC vs.
Revision 1.3 by jsr166, Sat Oct 16 16:22:56 2010 UTC

# Line 88 | Line 88 | class BoxedLongSort {
88              this.a = a; this.w = w; this.origin = origin; this.n = n;
89          }
90  
91 <        public void compute()  {
91 >        public void compute() {
92              int l = origin;
93              if (n <= THRESHOLD)
94                  Arrays.sort(a, l, l+n);
# Line 206 | Line 206 | class BoxedLongSort {
206  
207      }
208  
209 <    static void checkSorted (Long[] a)  {
209 >    static void checkSorted (Long[] a) {
210          int n = a.length;
211          for (int i = 0; i < n - 1; i++) {
212              if (a[i] > a[i+1]) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines