summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t87/before/test.java
blob: 12a28fa3084cbe007e25288e06db76cb955c8038 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import java.util.*;
public class Test {

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

    void foo() {
        List<String> array = getArray();
        Collections.sort(array);
    }

}