mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 13:45:34 +07:00
d82ff9650f
GitOrigin-RevId: b0b956ad677ce1ecdc80070e25877aef8dc65100
8 lines
136 B
Java
8 lines
136 B
Java
// "Simplify 'arg.isEmpty()' to false" "true"
|
|
class Test {
|
|
void test() {
|
|
String arg = "12";
|
|
String result = arg + null;
|
|
}
|
|
}
|