public boolean equals()

in common/src/main/java/org/mvndaemon/mvnd/common/DaemonStopEvent.java [63:71]


    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        DaemonStopEvent that = (DaemonStopEvent) o;
        return Objects.equals(daemonId, that.daemonId)
                && timestamp == that.timestamp
                && status == that.status
                && Objects.equals(reason, that.reason);
    }