mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
14 lines
185 B
Plaintext
14 lines
185 B
Plaintext
class Mapping {
|
|
private int myInt;
|
|
|
|
public void method() {
|
|
this.myInt++;
|
|
Mapping.this.myInt--;
|
|
myInt += hashCode();
|
|
}
|
|
|
|
public void context() {
|
|
method();
|
|
}
|
|
}
|