mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 06:51:01 +07:00
12 lines
195 B
Java
12 lines
195 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, file, a);<caret>
|
|
}
|
|
}
|