ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/LinkedBlockingQueue.java
(Generate patch)

Comparing jsr166/src/main/java/util/concurrent/LinkedBlockingQueue.java (file contents):
Revision 1.60 by jsr166, Fri Jun 3 02:28:05 2011 UTC vs.
Revision 1.61 by jsr166, Sat Jun 4 01:29:29 2011 UTC

# Line 106 | Line 106 | public class LinkedBlockingQueue<E> exte
106      private final int capacity;
107  
108      /** Current number of elements */
109 <    private final AtomicInteger count = new AtomicInteger(0);
109 >    private final AtomicInteger count = new AtomicInteger();
110  
111      /**
112       * Head of linked list.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines