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

Comparing jsr166/src/test/tck/ConcurrentLinkedQueueTest.java (file contents):
Revision 1.44 by jsr166, Sat Mar 11 17:33:32 2017 UTC vs.
Revision 1.45 by jsr166, Sat Mar 11 18:20:46 2017 UTC

# Line 37 | Line 37 | public class ConcurrentLinkedQueueTest e
37       * Returns a new queue of given size containing consecutive
38       * Integers 0 ... n - 1.
39       */
40 <    private ConcurrentLinkedQueue<Integer> populatedQueue(int n) {
40 >    private static ConcurrentLinkedQueue<Integer> populatedQueue(int n) {
41          ConcurrentLinkedQueue<Integer> q = new ConcurrentLinkedQueue<>();
42          assertTrue(q.isEmpty());
43          for (int i = 0; i < n; ++i)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines