in java/ws-server/src/main/java/com/epam/deltix/tbwg/webapp/model/charting/line/BarElementDef.java [74:84]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
BarElementDef that = (BarElementDef) o;
return Objects.equals(open, that.open) &&
Objects.equals(close, that.close) &&
Objects.equals(low, that.low) &&
Objects.equals(high, that.high) &&
Objects.equals(volume, that.volume);
}