mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
11 lines
227 B
Java
11 lines
227 B
Java
// "Unwrap 'if' statement" "true-preview"
|
|
class X {
|
|
void test(@org.jetbrains.annotations.NotNull String x) {
|
|
if(x != <caret>null) {
|
|
String str = x.trim();
|
|
System.out.println(str);
|
|
}
|
|
|
|
{{int str;}}
|
|
}
|
|
} |