This is an automated email from the ASF dual-hosted git repository. jleroux pushed a commit to branch release17.12 in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/release17.12 by this push: new d960b2b Improved: Refactor methods signature to reduce the number of params they use (OFBIZ-12335) d960b2b is described below commit d960b2b0caf14b706271e516ea7eb39c4eb32551 Author: Jacques Le Roux <jacques.le.r...@les7arts.com> AuthorDate: Sun Oct 10 13:32:49 2021 +0200 Improved: Refactor methods signature to reduce the number of params they use (OFBIZ-12335) Fixes a typo about filterConfiguration in CacheFilter.java --- .../base/src/main/java/org/apache/ofbiz/base/util/CacheFilter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/base/src/main/java/org/apache/ofbiz/base/util/CacheFilter.java b/framework/base/src/main/java/org/apache/ofbiz/base/util/CacheFilter.java index b2f0514..65931cf 100644 --- a/framework/base/src/main/java/org/apache/ofbiz/base/util/CacheFilter.java +++ b/framework/base/src/main/java/org/apache/ofbiz/base/util/CacheFilter.java @@ -79,7 +79,7 @@ public class CacheFilter implements Filter { * <li>Does not return within a time period defined by the web container</li> * </ul> * The default implementation is a NO-OP. - * @param filterConfig The configuration information associated with the filter instance being initialised + * @param filterConfiguration The configuration information associated with the filter instance being initialised * @throws ServletException if the initialisation fails */ public void init(FilterConfig filterConfiguration) throws ServletException {