mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
16 lines
226 B
Java
16 lines
226 B
Java
class B {
|
|
void readFile(String s, Class c) {}
|
|
|
|
{
|
|
|
|
newMethod("foo");
|
|
|
|
newMethod("bar");
|
|
}
|
|
|
|
private void newMethod(String foo) {
|
|
readFile(foo, B.class);
|
|
this.readFile(foo, B.class);
|
|
}
|
|
}
|