summaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/pr220255/base/MyServiceImpl.java
blob: 911fe81abd4fb0743e063bc078892fc7d8bf0b95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public class MyServiceImpl implements MyInterface
{

    public String doA(int lololo) {
        System.out.println("really did it "+lololo);
        return "really got it: "+lololo;
    }


    public String doB(int lala) {
        return doA(lala);
    }

}