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

Comparing jsr166/src/main/java/util/concurrent/LinkedBlockingDeque.java (file contents):
Revision 1.11 by jsr166, Sat May 21 02:54:52 2005 UTC vs.
Revision 1.12 by jsr166, Sat May 28 15:08:57 2005 UTC

# Line 737 | Line 737 | public class LinkedBlockingDeque<E>
737       * Variant of removeFirstOccurrence needed by iterator.remove.
738       * Searches for the node, not its contents.
739       */
740 <   boolean removeNode(Node<E> e) {
740 >    boolean removeNode(Node<E> e) {
741          lock.lock();
742          try {
743              for (Node<E> p = first; p != null; p = p.next) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines