summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigration/t02/after/test.java
blob: 5842b8fa99e0ad7cfc515bb4c095107ca98d6ed3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/**
 * 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 {
    Integer sum(int i, int j) {
        return i + j;
    }

    int foo(int n, int k) {
        int a;

        a = sum(n, k);

        return a;
    }
}