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

Comparing jsr166/src/test/tck/LinkedListTest.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 385 | Line 385 | public class LinkedListTest extends JSR1
385          LinkedList l = new LinkedList();
386          l.add(new Object());
387          try {
388 <            l.toArray(null);
388 >            l.toArray((Object[])null);
389              shouldThrow();
390          } catch (NullPointerException success) {}
391      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines