removed unnecessary null checks

This commit is contained in:
Robinson 2021-04-02 15:10:49 +02:00
parent 0d2c1f9b8d
commit 7439994efc

View File

@ -100,8 +100,8 @@ class AccessRule {
result = 31 * result + mode.hashCode() result = 31 * result + mode.hashCode()
result = 31 * result + configuration.hashCode() result = 31 * result + configuration.hashCode()
result = 31 * result + scope.hashCode() result = 31 * result + scope.hashCode()
result = 31 * result + (modifiedOn?.hashCode() ?: 0) result = 31 * result + modifiedOn.hashCode()
result = 31 * result + (createdOn?.hashCode() ?: 0) result = 31 * result + createdOn.hashCode()
return result return result
} }