summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigration/t67/after/test.java
blob: 8a4fda4a0fac16cb53e5870a9561fa7670b29bbc (plain)
1
2
3
4
5
6
7
8
9
class Test {
    private String myForAccess;
    private String forAccess() {
        return myForAccess;
    }
    public void methMemAcc(String p) {
        p = this.forAccess();
    }
}