mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-06 19:02:25 +07:00
10 lines
151 B
Java
10 lines
151 B
Java
import java.io.File;
|
|
|
|
class Zoo {
|
|
private Zoo delegate;
|
|
@Override
|
|
public void foo(String s, File file) {
|
|
delegate.foo(s, file);<caret>
|
|
}
|
|
}
|