dlmarion commented on code in PR #111:
URL: https://github.com/apache/accumulo-access/pull/111#discussion_r2920832659


##########
modules/core/src/main/java/org/apache/accumulo/access/impl/AuthorizationsImpl.java:
##########
@@ -19,20 +19,43 @@
 package org.apache.accumulo.access.impl;
 
 import java.io.Serial;
+import java.util.HashSet;
 import java.util.Iterator;
 import java.util.Set;
 
 import org.apache.accumulo.access.Authorizations;
 
-public record AuthorizationsImpl(Set<String> authorizations) implements 
Authorizations {
+public class AuthorizationsImpl implements Authorizations {
 
   @Serial
   private static final long serialVersionUID = 1L;
 
+  private static final HashSet<String> EMPTY_SET = new HashSet<>();

Review Comment:
   Removed in 369b9e1, this was added due to the test. Modified the test



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to