fix test data: avoid redundant return in extract method

GitOrigin-RevId: b04b2441d0b69dc1149739eda7129e255a88094d
This commit is contained in:
Alexandr Suhinin
2020-03-31 11:02:51 +03:00
committed by intellij-monorepo-bot
parent d8de410d0e
commit 0e0df596dd
2 changed files with 22 additions and 23 deletions

View File

@@ -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("");
}
}
}
}