mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 15:50:49 +07:00
GitOrigin-RevId: 3912d604fdca63ee22f5d37d4aad789ad5f1624b
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()));
|
|
}
|
|
} |