Makes IDEA-247576 obsolete Review ID: IJ-CR-2597 GitOrigin-RevId: 4dbb09153b683f2c191d8ba89a3c4ad8c3da038dmaster
parent
1651445c90
commit
f61e659e58
Binary file not shown.
@ -1,35 +1,17 @@ |
|||||||
package records; |
package records; |
||||||
|
|
||||||
public record TestRecordEmpty() { |
public record TestRecordEmpty() { |
||||||
public final String toString() { |
public int hashCode() { |
||||||
return this.toString<invokedynamic>(this); |
return 0;// 5 |
||||||
} |
|
||||||
|
|
||||||
public final int hashCode() { |
|
||||||
return this.hashCode<invokedynamic>(this); |
|
||||||
} |
|
||||||
|
|
||||||
public final boolean equals(Object o) { |
|
||||||
return this.equals<invokedynamic>(this, o);// 3 |
|
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
class 'records/TestRecordEmpty' { |
class 'records/TestRecordEmpty' { |
||||||
method 'toString ()Ljava/lang/String;' { |
|
||||||
1 4 |
|
||||||
6 4 |
|
||||||
} |
|
||||||
|
|
||||||
method 'hashCode ()I' { |
method 'hashCode ()I' { |
||||||
1 8 |
0 4 |
||||||
6 8 |
1 4 |
||||||
} |
|
||||||
|
|
||||||
method 'equals (Ljava/lang/Object;)Z' { |
|
||||||
2 12 |
|
||||||
7 12 |
|
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
Lines mapping: |
Lines mapping: |
||||||
3 <-> 13 |
5 <-> 5 |
||||||
|
@ -1,3 +1,7 @@ |
|||||||
package records; |
package records; |
||||||
|
|
||||||
public record TestRecordEmpty() {} |
public record TestRecordEmpty() { |
||||||
|
public int hashCode() { |
||||||
|
return 0; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue