mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 08:06:56 +07:00
12 lines
260 B
Java
12 lines
260 B
Java
// "Remove redundant null-check" "true"
|
|
import java.util.*;
|
|
|
|
public class Test {
|
|
Test(int x) {
|
|
System.out.println(x);
|
|
}
|
|
|
|
public void test() {
|
|
Objects.requireNonNull(new <caret>Test(1)+":"+new Test(2)+":"+new Test(3+new Test(4).hashCode()));
|
|
}
|
|
} |