Merged in bugfix/check_for_empty_permissions (pull request #266)

Check for empty (that is: null) permissions
This commit is contained in:
Sebastian Sdorra
2019-06-12 11:51:50 +00:00

View File

@@ -100,7 +100,7 @@ public class PermissionDescriptor implements Serializable
@Override
public int hashCode()
{
return value.hashCode();
return value == null? -1: value.hashCode();
}
/**