mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
Add 'finally' block fix (part of IDEA-200560)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
// "Add 'finally' block" "true"
|
||||
class Test {
|
||||
void foo() {
|
||||
try {
|
||||
} finally {
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
// "Add 'finally' block" "true"
|
||||
class Test {
|
||||
void foo() {
|
||||
try {}<caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user