summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t88/after/test.java
blob: 4be724c5d907e193cdeac34b86d17273c5a19f02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import java.util.*;
public class Test {

    List<String> getArray(){
       return null;
    }

    void foo() {
        List<String> array = getArray();
        Collections.sort(array, new Comparator<String>() {
            public int compare(String s1, String s2) {
                return 0;
            }
        });

    }

}