mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
Also: fix comment processing Improvement of IDEA-338114 GitOrigin-RevId: 87d057ccbea4262c40e2717c2ea3c004ac9865b0
10 lines
257 B
Java
10 lines
257 B
Java
// "Replace with 'Long.hashCode()'" "true-preview"
|
|
public class Test {
|
|
Long var = 1234567890123456789L;
|
|
Long var1 = 1234567890123456784L;
|
|
|
|
public void testMethod(boolean f) {
|
|
/*shift amount*/
|
|
int result = (f ? var : var1).hashCode();
|
|
}
|
|
} |