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