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