summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t88/before/test.java
blob: ce19bd33f20ebadec23b6b79393940953d9c137a (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 {

    String[] getArray(){
       return null;
    }

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

    }

}