This is an automated email from the ASF dual-hosted git repository. tv pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-jcs.git
commit 3fe006a9a18a296bada4d328cb5f8115078ed6b1 Author: Thomas Vandahl <[email protected]> AuthorDate: Sun Feb 8 17:49:13 2026 +0100 Fix attribute name --- .../java/org/apache/commons/jcs4/engine/CompositeCacheAttributes.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commons-jcs4-core/src/main/java/org/apache/commons/jcs4/engine/CompositeCacheAttributes.java b/commons-jcs4-core/src/main/java/org/apache/commons/jcs4/engine/CompositeCacheAttributes.java index 505a9e2e..5fecf458 100644 --- a/commons-jcs4-core/src/main/java/org/apache/commons/jcs4/engine/CompositeCacheAttributes.java +++ b/commons-jcs4-core/src/main/java/org/apache/commons/jcs4/engine/CompositeCacheAttributes.java @@ -271,7 +271,7 @@ public record CompositeCacheAttributes( dump.append( "[ " ); dump.append( "useLateral = " ).append( useLateral ); dump.append( ", useDisk = " ).append( useDisk ); - dump.append( ", maxObjs = " ).append( maxObjects ); + dump.append( ", maxObjects = " ).append( maxObjects ); dump.append( ", maxSpoolPerRun = " ).append( maxSpoolPerRun ); dump.append( ", diskUsagePattern = " ).append( diskUsagePattern ); dump.append( ", spoolChunkSize = " ).append( spoolChunkSize );
