If some fields in java record are initialized with null the equals return false.
public record A(String v) {}
boolean equals1 = new A("A").equals(new A("A"));
boolean equals2 = new A(null).equals(new A(null));
Both equals1 and equals2 have to be true but equals2 is false
GWT 2.13.0
If some fields in java record are initialized with
nullthe equals returnfalse.Both
equals1andequals2have to betruebutequals2isfalseGWT 2.13.0