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

Comparing jsr166/src/main/java/util/concurrent/ArrayBlockingQueue.java (file contents):
Revision 1.73 by jsr166, Mon Oct 18 04:13:04 2010 UTC vs.
Revision 1.74 by jsr166, Mon Nov 1 23:53:33 2010 UTC

# Line 653 | Line 653 | public class ArrayBlockingQueue<E> exten
653          try {
654              int i = takeIndex;
655              int n = 0;
656            int sz = count;
656              int max = (maxElements < count) ? maxElements : count;
657              while (n < max) {
658                  c.add(this.<E>cast(items[i]));

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines