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