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

Comparing jsr166/src/main/java/util/concurrent/LinkedTransferQueue.java (file contents):
Revision 1.48 by jsr166, Thu Nov 24 02:35:13 2011 UTC vs.
Revision 1.49 by jsr166, Tue Dec 6 04:37:55 2011 UTC

# Line 1290 | Line 1290 | public class LinkedTransferQueue<E> exte
1290          throws java.io.IOException, ClassNotFoundException {
1291          s.defaultReadObject();
1292          for (;;) {
1293 <            @SuppressWarnings("unchecked") E item = (E) s.readObject();
1293 >            @SuppressWarnings("unchecked")
1294 >            E item = (E) s.readObject();
1295              if (item == null)
1296                  break;
1297              else

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines