summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigration/t85/after/test.java
blob: c43a426e527732a17c7a7602be5c931acc2f25cb (plain)
1
2
3
4
5
6
7
8
public class Test {

    Integer str;
    Integer get(boolean f) {
        return f ? str : str + str;
    }

}