jdk/test/java/util/LinkedHashMap/Basic.java
changeset 32649 2ee9017c7597
parent 23010 6dadb192ad81
child 32991 b27c76b82713
equal deleted inserted replaced
32648:1fa861caf840 32649:2ee9017c7597
    30 import java.util.*;
    30 import java.util.*;
    31 import java.util.function.*;
    31 import java.util.function.*;
    32 import java.io.*;
    32 import java.io.*;
    33 
    33 
    34 public class Basic {
    34 public class Basic {
    35     final static Random rnd = new Random(666);
    35     static final Random rnd = new Random(666);
    36     final static Integer nil = new Integer(0);
    36     static final Integer nil = new Integer(0);
    37 
    37 
    38     public static void main(String[] args)  throws Exception {
    38     public static void main(String[] args)  throws Exception {
    39         int numItr =  500;
    39         int numItr =  500;
    40         int mapSize = 500;
    40         int mapSize = 500;
    41 
    41