Consistent final logger fields

This commit is contained in:
Juergen Hoeller
2016-10-04 23:00:36 +02:00
parent 684d6ab553
commit cfa0f6c84b
10 changed files with 21 additions and 26 deletions

View File

@@ -49,7 +49,6 @@ import org.springframework.web.reactive.result.method.HandlerMethodArgumentResol
import org.springframework.web.reactive.result.method.InvocableHandlerMethod;
import org.springframework.web.server.ServerWebExchange;
/**
* Supports the invocation of {@code @RequestMapping} methods.
*
@@ -58,7 +57,7 @@ import org.springframework.web.server.ServerWebExchange;
*/
public class RequestMappingHandlerAdapter implements HandlerAdapter, BeanFactoryAware, InitializingBean {
private static Log logger = LogFactory.getLog(RequestMappingHandlerAdapter.class);
private static final Log logger = LogFactory.getLog(RequestMappingHandlerAdapter.class);
private List<HandlerMethodArgumentResolver> customArgumentResolvers;