mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-23 07:14:21 +07:00
14 lines
283 B
Java
14 lines
283 B
Java
class Test {
|
|
public void test(final DocumentDataHookUp hookUp) {
|
|
Runnable r = () -> {
|
|
int expr = "".length();
|
|
hookUp.getDocument().replace(expr);
|
|
};
|
|
}
|
|
private class DocumentDataHookUp {
|
|
public String replace(int i1) {
|
|
return null;
|
|
}
|
|
}
|
|
}
|