ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/ConcurrentLinkedQueueTest.java
(Generate patch)

Comparing jsr166/src/test/tck/ConcurrentLinkedQueueTest.java (file contents):
Revision 1.19 by jsr166, Sat Oct 9 19:30:34 2010 UTC vs.
Revision 1.20 by jsr166, Wed Nov 3 07:54:52 2010 UTC

# Line 403 | Line 403 | public class ConcurrentLinkedQueueTest e
403      }
404  
405      /**
406 <     * toArray with incompatible array type throws ArrayStoreException
406 >     * toArray(incompatible array type) throws ArrayStoreException
407       */
408      public void testToArray1_BadArg() {
409          ConcurrentLinkedQueue q = populatedQueue(SIZE);
410          try {
411 <            Object o[] = q.toArray(new String[10]);
411 >            q.toArray(new String[10]);
412              shouldThrow();
413          } catch (ArrayStoreException success) {}
414      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines