mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-20 10:23:44 +07:00
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;
|
|
}
|
|
}
|