Skip to content

Commit

Permalink
fix(doc): Update services-interceptors.adoc
Browse files Browse the repository at this point in the history
the constructor name does not correspond to the class name
  • Loading branch information
sgandon authored Dec 9, 2024
1 parent 64be644 commit 2c902b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class LoggingHandler implements InterceptorHandler {
// internal
private final ConcurrentMap<Method, String> loggerNames = new ConcurrentHashMap<>();
public CacheHandler(final BiFunction<Method, Object[], Object> invoker, final SomeService service) {
public LoggingHandler(final BiFunction<Method, Object[], Object> invoker, final SomeService service) {
this.invoker = invoker;
this.service = service;
}
Expand Down

0 comments on commit 2c902b9

Please sign in to comment.