This is an automated email from the ASF dual-hosted git repository. reta pushed a commit to branch 3.6.x-fixes in repository https://gitbox.apache.org/repos/asf/cxf.git
commit d24c329dfbf18f70a8a6d83f928bbe069d8e1e01 Author: Andriy Redko <[email protected]> AuthorDate: Thu Jul 6 18:33:59 2023 -0400 Fix Checkstyle violations --- .../java/org/apache/cxf/ext/logging/AbstractLoggingInterceptor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rt/features/logging/src/main/java/org/apache/cxf/ext/logging/AbstractLoggingInterceptor.java b/rt/features/logging/src/main/java/org/apache/cxf/ext/logging/AbstractLoggingInterceptor.java index 5aeafba846..956727c8eb 100644 --- a/rt/features/logging/src/main/java/org/apache/cxf/ext/logging/AbstractLoggingInterceptor.java +++ b/rt/features/logging/src/main/java/org/apache/cxf/ext/logging/AbstractLoggingInterceptor.java @@ -103,8 +103,8 @@ public abstract class AbstractLoggingInterceptor extends AbstractPhaseIntercepto this.sensitiveProtocolHeaderNames.addAll(protocolHeaderNames); } - public void setSensitiveDataHelper(MaskSensitiveHelper maskSensitiveHelper) { - this.maskSensitiveHelper = maskSensitiveHelper; + public void setSensitiveDataHelper(MaskSensitiveHelper helper) { + this.maskSensitiveHelper = helper; } public void setPrettyLogging(boolean prettyLogging) {
