Some misc refactoring / code cleanup

This commit is contained in:
Luck
2019-01-07 15:08:13 +00:00
Unverified
parent c396323308
commit ec7a5321a6
20 changed files with 29 additions and 41 deletions
@@ -115,8 +115,8 @@ public final class DescriptionBuilder implements PermissionDescription.Builder,
return this.container.equals(other.container) &&
this.roles.equals(other.roles) &&
(this.id == null ? other.id == null : this.id.equals(other.id)) &&
(this.description == null ? other.description == null : this.description.equals(other.description));
Objects.equals(this.id, other.id) &&
Objects.equals(this.description, other.description);
}
@Override