Files
openide/java/java-tests/testData/refactoring/extractMethodNew/SimpleWithNullableDirectlyBeforeKeyword.java
Mikhail Pyltsin 2023228d8c [java-generation] IDEA-344399 generate annotation based on type_use option
- extracted new option
- reuse this option in MissortedModifiersInspection
- override uses this option too

GitOrigin-RevId: 39f3f72991240753c86c7f80df865728aa9743ad
2024-06-17 21:14:57 +00:00

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;
}
}