test/jdk/java/util/Collections/ReplaceAll.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 new replaceAll algorithm
    27  * @summary Basic test for new replaceAll algorithm
    28  */
    28  */
    29 
    29 
    30 import java.util.*;
    30 import java.util.ArrayList;
       
    31 import java.util.Collections;
       
    32 import java.util.LinkedList;
       
    33 import java.util.List;
       
    34 import java.util.Vector;
    31 
    35 
    32 public class ReplaceAll {
    36 public class ReplaceAll {
    33     static final int SIZE = 20;
    37     static final int SIZE = 20;
    34 
    38 
    35     public static void main(String[] args) throws Exception {
    39     public static void main(String[] args) throws Exception {