test/jdk/java/util/Collections/FindSubList.java
changeset 48541 946e34c2dec9
parent 47730 c7b5b1ce8145
equal deleted inserted replaced
48540:221cf8307606 48541:946e34c2dec9
    25  * @test
    25  * @test
    26  * @bug 4323074
    26  * @bug 4323074
    27  * @summary Basic test for Collections.indexOfSubList/lastIndexOfSubList
    27  * @summary Basic test for Collections.indexOfSubList/lastIndexOfSubList
    28  */
    28  */
    29 
    29 
    30 import java.util.*;
    30 import java.util.ArrayList;
       
    31 import java.util.Arrays;
       
    32 import java.util.Collections;
       
    33 import java.util.LinkedList;
       
    34 import java.util.List;
       
    35 import java.util.Vector;
    31 
    36 
    32 public class FindSubList {
    37 public class FindSubList {
    33     public static void main(String[] args) throws Exception {
    38     public static void main(String[] args) throws Exception {
    34         int N = 500;
    39         int N = 500;
    35         List source = new ArrayList(3 * N);
    40         List source = new ArrayList(3 * N);