mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 10:20:15 +07:00
VariableNameGenerator: fixed failing tests
This commit is contained in:
@@ -3,9 +3,9 @@ abstract class Test {
|
||||
abstract Object getObject();
|
||||
|
||||
void foo() {
|
||||
Class<?> i = getObject().getClass();
|
||||
if (RuntimeException.class.equals(i)) {
|
||||
} else if (IOException.class.equals(i)) {
|
||||
Class<?> aClass = getObject().getClass();
|
||||
if (RuntimeException.class.equals(aClass)) {
|
||||
} else if (IOException.class.equals(aClass)) {
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user