mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-25 06:01:39 +07:00
9 lines
184 B
Java
9 lines
184 B
Java
// "Unwrap 'else' branch" "true"
|
|
|
|
class T {
|
|
void f(boolean b) {
|
|
if (b)
|
|
throw new RuntimeException("When true");
|
|
System.out.println("Otherwise");
|
|
}
|
|
} |