mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 01:09:46 +07:00
fix test data: avoid redundant return in extract method
GitOrigin-RevId: b04b2441d0b69dc1149739eda7129e255a88094d
This commit is contained in:
committed by
intellij-monorepo-bot
parent
d8de410d0e
commit
0e0df596dd
@@ -1,17 +1,17 @@
|
||||
class Test {
|
||||
|
||||
private static void f(boolean a, boolean b) {
|
||||
if (a) {
|
||||
<selection>if (b) {
|
||||
System.out.println("");
|
||||
return;
|
||||
} else {
|
||||
System.out.println("");
|
||||
return;
|
||||
}</selection>
|
||||
} else {
|
||||
System.out.println("");
|
||||
private static void f(boolean a, boolean b) {
|
||||
if (a) {
|
||||
<selection>if (b) {
|
||||
System.out.println("");
|
||||
return;
|
||||
} else {
|
||||
System.out.println("");
|
||||
return;
|
||||
}</selection>
|
||||
} else {
|
||||
System.out.println("");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user