fixed bug in equals method of Permission object

This commit is contained in:
Sebastian Sdorra
2016-06-28 11:24:33 +02:00
parent 1529ef99d7
commit f52b27b58d

View File

@@ -136,8 +136,9 @@ public class Permission implements PermissionObject, Serializable
final Permission other = (Permission) obj;
return Objects.equal(name, other.name) && Objects.equal(type, other.type)
&& Objects.equal(groupPermission, groupPermission);
return Objects.equal(name, other.name)
&& Objects.equal(type, other.type)
&& Objects.equal(groupPermission, other.groupPermission);
}
/**