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.43 by dl, Mon Mar 18 12:40:30 2013 UTC vs.
Revision 1.44 by dl, Wed Mar 27 19:46:34 2013 UTC

# Line 1187 | Line 1187 | public class LinkedBlockingDeque<E>
1187              return null;
1188          }
1189  
1190 <        public void forEach(Consumer<? super E> action) {
1190 >        public void forEachRemaining(Consumer<? super E> action) {
1191              if (action == null) throw new NullPointerException();
1192              final LinkedBlockingDeque<E> q = this.queue;
1193              final ReentrantLock lock = q.lock;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines