mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 08:06:56 +07:00
Part of IDEA-291513 "Constant conditions & exceptions" does not flag 'Objects.requireNonNullElse' GitOrigin-RevId: 0cfd983801e8ed08f6407145215f7f9c6b12a684
8 lines
133 B
Java
8 lines
133 B
Java
// "Remove redundant null-check" "true"
|
|
import java.util.*;
|
|
|
|
public class Test {
|
|
public void test() {
|
|
Integer value = 55;
|
|
}
|
|
} |