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 df102cd6 Spelling
df102cd6 is described below

commit df102cd6314f31c9301098d4d3e84f6ad15f14d0
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Thu Oct 19 08:31:50 2023 -0400

    Spelling
---
 commons-jcs3-core/src/main/java/org/apache/commons/jcs3/JCS.java    | 4 ++--
 .../apache/commons/jcs3/auxiliary/disk/block/BlockDiskCache.java    | 6 +++---
 .../commons/jcs3/auxiliary/disk/indexed/IndexedDiskCache.java       | 6 +++---
 .../org/apache/commons/jcs/auxiliary/disk/file/FileDiskCache.java   | 2 +-
 .../apache/commons/jcs/utils/props/AbstractPropertyContainer.java   | 2 +-
 5 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/JCS.java 
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/JCS.java
index 56dd1b8f..bc889341 100644
--- a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/JCS.java
+++ b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/JCS.java
@@ -50,9 +50,9 @@ public abstract class JCS
     private static CompositeCacheManager cacheMgr;
 
     /**
-     * Set the filename that the cache manager will be initialized with. Only 
matters before the
+     * Set the file name that the cache manager will be initialized with. Only 
matters before the
      * instance is initialized.
-     * <p>
+     *
      * @param configFilename
      */
     public static void setConfigFilename( final String configFilename )
diff --git 
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/disk/block/BlockDiskCache.java
 
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/disk/block/BlockDiskCache.java
index c59ac077..b7f5a7ba 100644
--- 
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/disk/block/BlockDiskCache.java
+++ 
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/disk/block/BlockDiskCache.java
@@ -558,7 +558,7 @@ public class BlockDiskCache<K, V>
     {
         if ( !isAlive() )
         {
-            log.error("{0}: Not alive and dispose was called, filename: {1}", 
logCacheName, fileName);
+            log.error("{0}: Not alive and dispose was called, file name: {1}", 
logCacheName, fileName);
             return;
         }
         storageLock.writeLock().lock();
@@ -575,13 +575,13 @@ public class BlockDiskCache<K, V>
 
             try
             {
-                log.debug("{0}: Closing files, base filename: {1}", 
logCacheName, fileName );
+                log.debug("{0}: Closing files, base file name: {1}", 
logCacheName, fileName );
                 dataFile.close();
                 // dataFile = null;
             }
             catch ( final IOException e )
             {
-                log.error("{0}: Failure closing files in dispose, filename: 
{1}",
+                log.error("{0}: Failure closing files in dispose, file name: 
{1}",
                         logCacheName, fileName, e );
             }
         }
diff --git 
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/disk/indexed/IndexedDiskCache.java
 
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/disk/indexed/IndexedDiskCache.java
index b0547bea..cf93bdfd 100644
--- 
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/disk/indexed/IndexedDiskCache.java
+++ 
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/disk/indexed/IndexedDiskCache.java
@@ -971,7 +971,7 @@ public class IndexedDiskCache<K, V> extends 
AbstractDiskCache<K, V>
     {
         if (!isAlive())
         {
-            log.error("{0}: Not alive and dispose was called, filename: {1}",
+            log.error("{0}: Not alive and dispose was called, file name: {1}",
                     logCacheName, fileName);
             return;
         }
@@ -1005,7 +1005,7 @@ public class IndexedDiskCache<K, V> extends 
AbstractDiskCache<K, V>
 
         try
         {
-            log.debug("{0}: Closing files, base filename: {1}", logCacheName,
+            log.debug("{0}: Closing files, base file name: {1}", logCacheName,
                     fileName);
             dataFile.close();
             dataFile = null;
@@ -1014,7 +1014,7 @@ public class IndexedDiskCache<K, V> extends 
AbstractDiskCache<K, V>
         }
         catch (final IOException e)
         {
-            log.error("{0}: Failure closing files in dispose, filename: {1}",
+            log.error("{0}: Failure closing files in dispose, file name: {1}",
                     logCacheName, fileName, e);
         }
 
diff --git 
a/commons-jcs3-sandbox/commons-jcs3-filecache/src/main/java/org/apache/commons/jcs/auxiliary/disk/file/FileDiskCache.java
 
b/commons-jcs3-sandbox/commons-jcs3-filecache/src/main/java/org/apache/commons/jcs/auxiliary/disk/file/FileDiskCache.java
index 397f2a8a..4a86c28f 100644
--- 
a/commons-jcs3-sandbox/commons-jcs3-filecache/src/main/java/org/apache/commons/jcs/auxiliary/disk/file/FileDiskCache.java
+++ 
b/commons-jcs3-sandbox/commons-jcs3-filecache/src/main/java/org/apache/commons/jcs/auxiliary/disk/file/FileDiskCache.java
@@ -140,7 +140,7 @@ public class FileDiskCache<K, V>
     {
         StringBuilder fileNameBuffer = new StringBuilder();
 
-        // add key as filename in a file system safe way
+        // add key as file name in a file system safe way
         String keys = key.toString();
         int l = keys.length();
         for ( int i = 0; i < l; i++ )
diff --git 
a/commons-jcs3-sandbox/commons-jcs3-partitioned/src/main/java/org/apache/commons/jcs/utils/props/AbstractPropertyContainer.java
 
b/commons-jcs3-sandbox/commons-jcs3-partitioned/src/main/java/org/apache/commons/jcs/utils/props/AbstractPropertyContainer.java
index 0c5f293c..59b69be3 100644
--- 
a/commons-jcs3-sandbox/commons-jcs3-partitioned/src/main/java/org/apache/commons/jcs/utils/props/AbstractPropertyContainer.java
+++ 
b/commons-jcs3-sandbox/commons-jcs3-partitioned/src/main/java/org/apache/commons/jcs/utils/props/AbstractPropertyContainer.java
@@ -37,7 +37,7 @@ public abstract class AbstractPropertyContainer
      * A property group is a subsection of properties. It's sent to the 
properties factory to
      * specify which group of properties to pull back. This will probably mean 
different things to
      * different property factories. For PropertiesFactoryFileImpl, the 
propertiesGroup maps to a
-     * filename.
+     * file name.
      */
     private String propertiesGroup;
 

Reply via email to