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.45 by jsr166, Wed May 18 01:42:54 2005 UTC vs.
Revision 1.46 by dl, Wed May 25 14:05:27 2005 UTC

# Line 602 | Line 602 | public class LinkedBlockingQueue<E> exte
602              throw new NullPointerException();
603          if (c == this)
604              throw new IllegalArgumentException();
605 <        Node first;
605 >        Node<E> first;
606          fullyLock();
607          try {
608              first = head.next;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines