Files
Alexandr Suhinin c7b05d5f55 [extract method] fix test data
GitOrigin-RevId: 4d64e2fced6e7b3c87b1361de36909fec8d7db0a
2020-03-31 12:32:01 +00:00

17 lines
341 B
Java

class Test {
private static void f(boolean a, boolean b) {
if (a) {
<selection>try {
System.out.println();
return;
}
catch (Exception e) {
return;
}</selection>
} else {
System.out.println("");
}
}
}