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 1aa1a808 message typos 1aa1a808 is described below commit 1aa1a8088bfe3096d91ad8ac04787007942a9d73 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri May 19 08:58:48 2023 -0400 message typos --- .../main/java/org/apache/commons/jcs/access/PartitionedCacheAccess.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commons-jcs-sandbox/partitioned/src/main/java/org/apache/commons/jcs/access/PartitionedCacheAccess.java b/commons-jcs-sandbox/partitioned/src/main/java/org/apache/commons/jcs/access/PartitionedCacheAccess.java index 0eb4d517..e7165fa7 100644 --- a/commons-jcs-sandbox/partitioned/src/main/java/org/apache/commons/jcs/access/PartitionedCacheAccess.java +++ b/commons-jcs-sandbox/partitioned/src/main/java/org/apache/commons/jcs/access/PartitionedCacheAccess.java @@ -684,7 +684,7 @@ public class PartitionedCacheAccess<K, V> { // THIS IS UGLY, but I can't think of a better failsafe right now. keyNum = key.hashCode(); - log.warn( "Couldn't convert [{0}] into a number. Will use hashcode [{1}]", key, keyNum); + log.warn( "Couldn't convert [{0}] into a number. Will use hash code [{1}]", key, keyNum); } return keyNum; }