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.48 by jsr166, Mon May 28 21:19:50 2018 UTC vs.
Revision 1.49 by jsr166, Fri Jun 22 00:04:58 2018 UTC

# Line 415 | Line 415 | public class ConcurrentLinkedQueueTest e
415      public void testToArray_NullArg() {
416          ConcurrentLinkedQueue q = populatedQueue(SIZE);
417          try {
418 <            q.toArray(null);
418 >            q.toArray((Object[])null);
419              shouldThrow();
420          } catch (NullPointerException success) {}
421      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines