in api/src/main/java/org/apache/fineract/cn/rhythm/api/v1/domain/ClockOffset.java [82:89]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ClockOffset that = (ClockOffset) o;
return Objects.equals(hours, that.hours) &&
Objects.equals(minutes, that.minutes) &&
Objects.equals(seconds, that.seconds);
}