mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
- extracted new option - reuse this option in MissortedModifiersInspection - override uses this option too GitOrigin-RevId: 39f3f72991240753c86c7f80df865728aa9743ad
11 lines
185 B
Java
11 lines
185 B
Java
public class Test {
|
|
public void test(){
|
|
String a;
|
|
<selection> if (1 == 0) {
|
|
a = "1";
|
|
} else {
|
|
a = null;
|
|
}</selection>
|
|
return a;
|
|
}
|
|
} |