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-jcs.git
The following commit(s) were added to refs/heads/master by this push: new b2aa1600 Camel-case parameter names b2aa1600 is described below commit b2aa160019d58b056b7da99d7c218167e151b93a Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Oct 19 09:25:51 2023 -0400 Camel-case parameter names --- .../commons/jcs3/engine/control/CompositeCacheManager.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/control/CompositeCacheManager.java b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/control/CompositeCacheManager.java index 66183701..6b6379d5 100644 --- a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/control/CompositeCacheManager.java +++ b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/control/CompositeCacheManager.java @@ -164,16 +164,16 @@ public class CompositeCacheManager /** * Initializes the cache manager using the props file for the given name. - * <p> - * @param propsFilename + * + * @param propsFileName * @return CompositeCacheManager configured from the give propsFileName * @throws CacheException if the configuration cannot be loaded */ - public static synchronized CompositeCacheManager getInstance( final String propsFilename ) throws CacheException + public static synchronized CompositeCacheManager getInstance( final String propsFileName ) throws CacheException { if ( instance == null ) { - log.info( "Instance is null, creating with config [{0}]", propsFilename ); + log.info( "Instance is null, creating with config [{0}]", propsFileName ); instance = createInstance(); } @@ -184,7 +184,7 @@ public class CompositeCacheManager if (!instance.isConfigured()) { - instance.configure( propsFilename ); + instance.configure( propsFileName ); } instance.clients.incrementAndGet();