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.27 by dl, Sun Oct 19 13:38:34 2003 UTC vs.
Revision 1.28 by dl, Mon Nov 10 17:31:23 2003 UTC

# Line 128 | Line 128 | public class LinkedBlockingQueue<E> exte
128      private E extract() {
129          Node<E> first = head.next;
130          head = first;
131 <        E x = (E)first.item;
131 >        E x = first.item;
132          first.item = null;
133          return x;
134      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines