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

Comparing jsr166/src/test/tck/AtomicLongArrayTest.java (file contents):
Revision 1.29 by jsr166, Wed Dec 31 19:21:20 2014 UTC vs.
Revision 1.30 by jsr166, Sun Feb 22 04:34:44 2015 UTC

# Line 35 | Line 35 | public class AtomicLongArrayTest extends
35      public void testConstructor2NPE() {
36          try {
37              long[] a = null;
38 <            AtomicLongArray aa = new AtomicLongArray(a);
38 >            new AtomicLongArray(a);
39              shouldThrow();
40          } catch (NullPointerException success) {}
41      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines