This is an automated email from the ASF dual-hosted git repository.
ctubbsii pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo-access.git
The following commit(s) were added to refs/heads/main by this push:
new 68fe695 Trivial: reduce visibility on CharsWrapper.set
68fe695 is described below
commit 68fe695f76d3af4d3d6b1007b8c16ceb8b2188b2
Author: Christopher Tubbs <[email protected]>
AuthorDate: Mon Mar 16 18:18:06 2026 -0400
Trivial: reduce visibility on CharsWrapper.set
---
.../src/main/java/org/apache/accumulo/access/impl/CharsWrapper.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/modules/core/src/main/java/org/apache/accumulo/access/impl/CharsWrapper.java
b/modules/core/src/main/java/org/apache/accumulo/access/impl/CharsWrapper.java
index 17c47c6..a58554b 100644
---
a/modules/core/src/main/java/org/apache/accumulo/access/impl/CharsWrapper.java
+++
b/modules/core/src/main/java/org/apache/accumulo/access/impl/CharsWrapper.java
@@ -78,7 +78,7 @@ final class CharsWrapper implements CharSequence {
return new String(wrapped, offset, len);
}
- public void set(char[] data, int start, int len) {
+ void set(char[] data, int start, int len) {
this.wrapped = data;
this.offset = start;
this.len = len;