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