modules/code-deployment/src/main/java/org/apache/ignite/internal/deployunit/UnitVersionStatus.java [50:64]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }

        UnitVersionStatus that = (UnitVersionStatus) o;

        if (version != null ? !version.equals(that.version) : that.version != null) {
            return false;
        }
        return status == that.status;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



modules/rest-api/src/main/java/org/apache/ignite/internal/rest/api/deployment/UnitVersionStatus.java [55:69]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }

        UnitVersionStatus that = (UnitVersionStatus) o;

        if (version != null ? !version.equals(that.version) : that.version != null) {
            return false;
        }
        return status == that.status;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



