in java/com/jetbrains/cef/remote/thrift_codegen/Rect.java [343:386]
public boolean equals(Rect that) {
if (that == null)
return false;
if (this == that)
return true;
boolean this_present_x = true;
boolean that_present_x = true;
if (this_present_x || that_present_x) {
if (!(this_present_x && that_present_x))
return false;
if (this.x != that.x)
return false;
}
boolean this_present_y = true;
boolean that_present_y = true;
if (this_present_y || that_present_y) {
if (!(this_present_y && that_present_y))
return false;
if (this.y != that.y)
return false;
}
boolean this_present_w = true;
boolean that_present_w = true;
if (this_present_w || that_present_w) {
if (!(this_present_w && that_present_w))
return false;
if (this.w != that.w)
return false;
}
boolean this_present_h = true;
boolean that_present_h = true;
if (this_present_h || that_present_h) {
if (!(this_present_h && that_present_h))
return false;
if (this.h != that.h)
return false;
}
return true;
}