mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
Also, EquivalenceChecker.getComplexElementDecision fixed GitOrigin-RevId: 6848a57ddc1cf4992030fff614c246a6316f4807
10 lines
203 B
Java
10 lines
203 B
Java
// "Collapse into loop" "false"
|
|
class X {
|
|
public int hashCode() {
|
|
int result = 1;
|
|
int other = 3;
|
|
<selection>result = 2 + other;
|
|
result = 2 + result;</selection>
|
|
return result;
|
|
}
|
|
} |