File tree Expand file tree Collapse file tree
cloud-core/src/main/java/org/incendo/cloud Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -423,15 +423,15 @@ public boolean hasCapability(final @NonNull CloudCapability capability) {
423423 });
424424 } else if (permission instanceof OrPermission ) {
425425 for (final Permission innerPermission : permission .permissions ()) {
426- final PermissionResult result = this .testPermission (sender , innerPermission );
426+ final PermissionResult result = this .testPermission_ (sender , innerPermission );
427427 if (result .allowed ()) {
428428 return result ;
429429 }
430430 }
431431 return PermissionResult .denied (permission );
432432 } else if (permission instanceof AndPermission ) {
433433 for (final Permission innerPermission : permission .permissions ()) {
434- final PermissionResult result = this .testPermission (sender , innerPermission );
434+ final PermissionResult result = this .testPermission_ (sender , innerPermission );
435435 if (!result .allowed ()) {
436436 return result ;
437437 }
You can’t perform that action at this time.
0 commit comments