This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-bcel.git
commit 70d94ab891ba86b3d24dcbeff9d41adc1dd8372e Author: Gary David Gregory (Code signing key) <[email protected]> AuthorDate: Sat Oct 29 07:04:28 2022 -0400 Spelling --- src/main/java/org/apache/bcel/classfile/ConstantUtf8.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/bcel/classfile/ConstantUtf8.java b/src/main/java/org/apache/bcel/classfile/ConstantUtf8.java index bc5d01e0..5b8aa66a 100644 --- a/src/main/java/org/apache/bcel/classfile/ConstantUtf8.java +++ b/src/main/java/org/apache/bcel/classfile/ConstantUtf8.java @@ -107,7 +107,7 @@ public final class ConstantUtf8 extends Constant { Cache.CACHE.clear(); } - // for accesss by test code + // for access by test code static synchronized void clearStats() { hits = considered = skipped = created = 0; } @@ -169,7 +169,7 @@ public final class ConstantUtf8 extends Constant { return Cache.isEnabled() ? getCachedInstance(value) : new ConstantUtf8(value); } - // for accesss by test code + // for access by test code static void printStats() { final String prefix = "[Apache Commons BCEL]"; System.err.printf("%s Cache hit %,d/%,d, %d skipped.%n", prefix, hits, considered, skipped);
