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

Comparing jsr166/src/main/java/util/concurrent/ConcurrentLinkedQueue.java (file contents):
Revision 1.89 by dl, Mon Mar 18 12:40:30 2013 UTC vs.
Revision 1.90 by dl, Wed Mar 27 19:46:34 2013 UTC

# Line 814 | Line 814 | public class ConcurrentLinkedQueue<E> ex
814              return null;
815          }
816  
817 <        public void forEach(Consumer<? super E> action) {
817 >        public void forEachRemaining(Consumer<? super E> action) {
818              Node<E> p;
819              if (action == null) throw new NullPointerException();
820              final ConcurrentLinkedQueue<E> q = this.queue;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines