mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
16 lines
204 B
Plaintext
16 lines
204 B
Plaintext
class Mapping {
|
|
private int myInt;
|
|
|
|
public void method(int p) {
|
|
myInt = p + 1;
|
|
}
|
|
|
|
public void context1() {
|
|
method(myInt);
|
|
}
|
|
|
|
public void context2() {
|
|
method(this.myInt);
|
|
}
|
|
}
|