summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigration/t05/before/test.java
blob: e8a96127f4fdb8ca51f964b9b10d1acf622a0989 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
 * Created by IntelliJ IDEA.
 * User: db
 * Date: Nov 15, 2004
 * Time: 5:40:02 PM
 * To change this template use File | Settings | File Templates.
 */
public class Test {
    int sum(int i, int j) {
        return i + j;
    }

    int[] foo(int n, int k) {
        int[] a = new int[] {1, 2, 3, 4};

        for (int i = 0; i < a.length; i++) {
            a[i] = sum(i, k);
        }

        return a;
    }
}