mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
13 lines
199 B
Plaintext
13 lines
199 B
Plaintext
public class Foo {
|
|
void m() {
|
|
try (AutoCloseable stream = getStream()) {
|
|
|
|
} catch (Exception e) {
|
|
}
|
|
}
|
|
|
|
AutoCloseable getStream()
|
|
{
|
|
return null;
|
|
}
|
|
} |