mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 00:29:34 +07:00
12 lines
161 B
Java
12 lines
161 B
Java
import java.lang.AutoCloseable
|
|
|
|
public class Foo {
|
|
void m() {
|
|
getStream().twr<caret>
|
|
}
|
|
|
|
Object getStream()
|
|
{
|
|
return null;
|
|
}
|
|
} |