mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
10 lines
233 B
Java
10 lines
233 B
Java
// "Simplify 'Objects.nonNull(...)' to true extracting side effects" "true-preview"
|
|
import java.util.Set;
|
|
import java.util.Objects;
|
|
|
|
class X {
|
|
void test(Set<String> set) {
|
|
set.add("foo");
|
|
boolean b = true;
|
|
}
|
|
} |