Skip to content

Commit 97c93a2

Browse files
committed
Remove unused logger from handler processor
Clean up `InterceptingHandlerMethodProcessor` by removing the unused logger field and related imports. This reduces dead code and keeps the class focused on active dependencies.
1 parent 550afb9 commit 97c93a2

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

microsphere-spring-webflux/src/main/java/io/microsphere/spring/webflux/method/InterceptingHandlerMethodProcessor.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
package io.microsphere.spring.webflux.method;
1818

1919
import io.microsphere.annotation.Nullable;
20-
import io.microsphere.logging.Logger;
2120
import io.microsphere.spring.context.event.OnceApplicationContextEventListener;
2221
import io.microsphere.spring.web.event.WebEndpointMappingsReadyEvent;
2322
import io.microsphere.spring.web.metadata.WebEndpointMapping;
@@ -51,7 +50,6 @@
5150

5251
import static io.microsphere.collection.MapUtils.newHashMap;
5352
import static io.microsphere.lang.function.ThrowableAction.execute;
54-
import static io.microsphere.logging.LoggerFactory.getLogger;
5553
import static io.microsphere.reflect.FieldUtils.getFieldValue;
5654
import static io.microsphere.spring.beans.BeanUtils.getSortedBeans;
5755
import static io.microsphere.spring.web.util.MonoUtils.getValue;
@@ -83,8 +81,6 @@ public class InterceptingHandlerMethodProcessor extends OnceApplicationContextEv
8381

8482
public static final String BEAN_NAME = "interceptingHandlerMethodProcessor";
8583

86-
private static final Logger logger = getLogger(InterceptingHandlerMethodProcessor.class);
87-
8884
private static final RequestContextWebFilter delegateWebFilter = new RequestContextWebFilter();
8985

9086
private final Map<MethodParameter, MethodParameterContext> parameterContextsCache = newHashMap(256);

0 commit comments

Comments
 (0)