mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 19:49:20 +07:00
f3b5023004
GitOrigin-RevId: 7c2287c2fccd4868e5c17480e9bda49e0317c16f
12 lines
494 B
Java
12 lines
494 B
Java
// "Collapse into loop" "true"
|
|
class X {
|
|
public int hashCode() {
|
|
int result = super.hashCode();
|
|
<selection>result = 31 * result + (field != null ? field.hashCode() : 0);
|
|
result = 31 * result + ((field2 != null) ? field2.hashCode() : 0);
|
|
result = 31 * result + (field3 != null ? field3.hashCode() : 0);
|
|
result = 31 * result + (field4 != null ? field4.hashCode() : 0);
|
|
result = 31 * result + (field5 != null ? field5.hashCode() : 0);</selection>
|
|
return result;
|
|
}
|
|
} |