ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/jtreg/util/Collections/Rotate.java
(Generate patch)

Comparing jsr166/src/test/jtreg/util/Collections/Rotate.java (file contents):
Revision 1.3 by jsr166, Tue Sep 15 14:32:19 2015 UTC vs.
Revision 1.6 by jsr166, Mon Jan 8 03:12:03 2018 UTC

# Line 21 | Line 21
21   * questions.
22   */
23  
24 < /**
24 > /*
25   * @test
26   * @bug 4323074
27   * @summary Basic test for new rotate algorithm
28   * @key randomness
29   */
30  
31 < import java.util.*;
31 > import java.util.ArrayList;
32 > import java.util.Collections;
33 > import java.util.LinkedList;
34 > import java.util.List;
35 > import java.util.Random;
36 > import java.util.Vector;
37  
38   public class Rotate {
39      // Should have lots of distinct factors and be > ROTATE_THRESHOLD
# Line 37 | Line 42 | public class Rotate {
42      static Random rnd = new Random();
43  
44      public static void main(String[] args) throws Exception {
45 <        List a[] = {new ArrayList(), new LinkedList(), new Vector()};
45 >        List[] a = {new ArrayList(), new LinkedList(), new Vector()};
46  
47          for (int i=0; i<a.length; i++) {
48              List lst = a[i];

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines