summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t103/before/test.java
blob: 7e5802d50574fd3c6edb38e41aed747e76f0f444 (plain)
1
2
3
4
5
6
7
import java.util.*;

public class Test {
  void method(ArrayList<String> l) {
    l.set(1, "");
  }
}