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 b5efaaf4 Fix spelling b5efaaf4 is described below commit b5efaaf471ad9b46937b8c519db501d156b995fe Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Jan 16 11:02:03 2023 -0500 Fix spelling --- .../org/apache/commons/jcs/auxiliary/disk/file/FileDiskCache.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commons-jcs-sandbox/filecache/src/main/java/org/apache/commons/jcs/auxiliary/disk/file/FileDiskCache.java b/commons-jcs-sandbox/filecache/src/main/java/org/apache/commons/jcs/auxiliary/disk/file/FileDiskCache.java index b5e3076a..69fb1888 100644 --- a/commons-jcs-sandbox/filecache/src/main/java/org/apache/commons/jcs/auxiliary/disk/file/FileDiskCache.java +++ b/commons-jcs-sandbox/filecache/src/main/java/org/apache/commons/jcs/auxiliary/disk/file/FileDiskCache.java @@ -439,7 +439,7 @@ public class FileDiskCache<K, V> { if ( log.isDebugEnabled() ) { - log.debug( logCacheName + "Max reached, removing least recently modifed" ); + log.debug( logCacheName + "Max reached, removing least recently modified" ); } long oldestLastModified = System.currentTimeMillis(); @@ -459,7 +459,7 @@ public class FileDiskCache<K, V> { if ( log.isDebugEnabled() ) { - log.debug( logCacheName + "Least recently modifed: " + theLeastRecentlyModified ); + log.debug( logCacheName + "Least recently modified: " + theLeastRecentlyModified ); } deleteWithRetry( theLeastRecentlyModified ); }