mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 19:52:07 +07:00
GitOrigin-RevId: 3912d604fdca63ee22f5d37d4aad789ad5f1624b
14 lines
239 B
Java
14 lines
239 B
Java
// "Remove redundant null-check" "true"
|
|
import java.util.*;
|
|
|
|
public class Test {
|
|
Test(int x) {
|
|
System.out.println(x);
|
|
}
|
|
|
|
public void test() {
|
|
new Test(1);
|
|
new Test(2);
|
|
new Test(3 + new Test(4).hashCode());
|
|
}
|
|
} |