From 2c902b9f002b5e60faceb4fe18a5e484958c75e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Gandon?= Date: Mon, 9 Dec 2024 18:41:08 +0100 Subject: [PATCH] fix(doc): Update services-interceptors.adoc the constructor name does not correspond to the class name --- .../main/antora/modules/ROOT/pages/services-interceptors.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/src/main/antora/modules/ROOT/pages/services-interceptors.adoc b/documentation/src/main/antora/modules/ROOT/pages/services-interceptors.adoc index ad4a3a00e1e55..3630b6e259cff 100644 --- a/documentation/src/main/antora/modules/ROOT/pages/services-interceptors.adoc +++ b/documentation/src/main/antora/modules/ROOT/pages/services-interceptors.adoc @@ -35,7 +35,7 @@ public class LoggingHandler implements InterceptorHandler { // internal private final ConcurrentMap loggerNames = new ConcurrentHashMap<>(); - public CacheHandler(final BiFunction invoker, final SomeService service) { + public LoggingHandler(final BiFunction invoker, final SomeService service) { this.invoker = invoker; this.service = service; }