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

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