in spi/src/main/java/org/apache/fineract/cn/rhythm/spi/v1/events/BeatPublishEvent.java [66:73]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
BeatPublishEvent that = (BeatPublishEvent) o;
return Objects.equals(applicationIdentifier, that.applicationIdentifier) &&
Objects.equals(beatIdentifier, that.beatIdentifier) &&
Objects.equals(forTime, that.forTime);
}