mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
12 lines
207 B
Java
12 lines
207 B
Java
// "Remove useless null-check" "true"
|
|
import java.util.*;
|
|
|
|
public class Test {
|
|
Test(int x) {}
|
|
|
|
public void test() {
|
|
new Test(1);
|
|
new Test(2);
|
|
new Test(3 + new Test(4).hashCode());
|
|
}
|
|
} |