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

Comparing jsr166/src/test/loops/UnboundedQueueFillEmptyLoops.java (file contents):
Revision 1.9 by jsr166, Thu Dec 18 18:43:22 2014 UTC vs.
Revision 1.12 by jsr166, Sun Oct 23 03:03:24 2016 UTC

# Line 6 | Line 6
6  
7   import java.util.*;
8   import java.util.concurrent.*;
9 import java.util.concurrent.locks.*;
9   import java.util.concurrent.atomic.*;
10 + import java.util.concurrent.locks.*;
11  
12   public class UnboundedQueueFillEmptyLoops {
13      static int maxSize = 10000;
# Line 45 | Line 45 | public class UnboundedQueueFillEmptyLoop
45      }
46  
47      static void oneRun(Class<?> klass, int n) throws Exception {
48 <        Queue<Integer> q = (Queue<Integer>) klass.newInstance();
48 >        Queue<Integer> q =
49 >            (Queue<Integer>) klass.getConstructor().newInstance();
50          int sum = total;
51          int m = rng.nextInt(numbers.length);
52          long startTime = System.nanoTime();
# Line 55 | Line 56 | public class UnboundedQueueFillEmptyLoop
56                      m = 0;
57                  q.offer(numbers[m++]);
58              }
59 <            Integer p;
59 <            while ((p = q.poll()) != null)
59 >            for (Integer p; (p = q.poll()) != null; )
60                  sum += p.intValue();
61          }
62          total += sum;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines