Skip to content

Commit 038d66e

Browse files
committed
Rename
1 parent 9fbac06 commit 038d66e

File tree

1 file changed

+3
-3
lines changed
  • x-pack/plugin/security/src/main/java/org/elasticsearch/xpack/security/authz

1 file changed

+3
-3
lines changed

x-pack/plugin/security/src/main/java/org/elasticsearch/xpack/security/authz/RBACEngine.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1051,17 +1051,17 @@ private static boolean isAsyncRelatedAction(String action) {
10511051

10521052
static final class AuthorizedIndices implements AuthorizationEngine.AuthorizedIndices {
10531053

1054-
private final CachedSupplier<Set<String>> allAuthorizedAndAvailableWithSelectors;
1054+
private final CachedSupplier<Set<String>> allAuthorizedAndAvailable;
10551055
private final BiPredicate<String, String> isAuthorizedPredicate;
10561056

10571057
AuthorizedIndices(Supplier<Set<String>> allAuthorizedAndAvailable, BiPredicate<String, String> isAuthorizedPredicate) {
1058-
this.allAuthorizedAndAvailableWithSelectors = CachedSupplier.wrap(allAuthorizedAndAvailable);
1058+
this.allAuthorizedAndAvailable = CachedSupplier.wrap(allAuthorizedAndAvailable);
10591059
this.isAuthorizedPredicate = Objects.requireNonNull(isAuthorizedPredicate);
10601060
}
10611061

10621062
@Override
10631063
public Supplier<Set<String>> all() {
1064-
return allAuthorizedAndAvailableWithSelectors;
1064+
return allAuthorizedAndAvailable;
10651065
}
10661066

10671067
@Override

0 commit comments

Comments
 (0)