jdk/test/java/util/Collections/RotateEmpty.java
changeset 32991 b27c76b82713
parent 5506 202f599c92aa
equal deleted inserted replaced
32990:299a81977f48 32991:b27c76b82713
    31 
    31 
    32 public class RotateEmpty {
    32 public class RotateEmpty {
    33 
    33 
    34     public static void main(String[] args) throws Exception {
    34     public static void main(String[] args) throws Exception {
    35             List l = new ArrayList();
    35             List l = new ArrayList();
    36             Collections.rotate (l, 1);
    36             Collections.rotate(l, 1);
    37     }
    37     }
    38 }
    38 }