mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 13:50:53 +07:00
12 lines
186 B
Java
12 lines
186 B
Java
import java.io.File;
|
|
|
|
class Zoo {
|
|
private Zoo delegate;
|
|
|
|
public void foo(String s, File file) {
|
|
}
|
|
public void foo(String s, File file, int a) {
|
|
delegate.foo(s<caret>);
|
|
}
|
|
}
|