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

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