mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 02:09:59 +07:00
can complete normally for nested try-with-resources (IDEA-138961)
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.Set;
|
||||
|
||||
class Test {
|
||||
Database database;
|
||||
|
||||
Set<Long> getItems() {
|
||||
return database.perform(connection -> {
|
||||
try (AutoCloseable c = null) {
|
||||
try (AutoCloseable d = null) {
|
||||
return Collections.emptySet();
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
public interface Database {
|
||||
<V> V perform(BusinessLogic<V> logic);
|
||||
}
|
||||
|
||||
public interface BusinessLogic<V> {
|
||||
V execute(String connection) throws Exception;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user