Consistent declaration of private static final logger variables
Issue: SPR-11905
This commit is contained in:
@@ -35,7 +35,7 @@ import java.util.List;
|
||||
*/
|
||||
class ResponseBodyAdviceChain {
|
||||
|
||||
private static Log logger = LogFactory.getLog(ResponseBodyAdviceChain.class);
|
||||
private static final Log logger = LogFactory.getLog(ResponseBodyAdviceChain.class);
|
||||
|
||||
private final List<Object> advice;
|
||||
|
||||
|
||||
@@ -42,7 +42,7 @@ import org.springframework.web.filter.OncePerRequestFilter;
|
||||
*/
|
||||
public class ResourceUrlEncodingFilter extends OncePerRequestFilter {
|
||||
|
||||
private static Log logger = LogFactory.getLog(ResourceUrlEncodingFilter.class);
|
||||
private static final Log logger = LogFactory.getLog(ResourceUrlEncodingFilter.class);
|
||||
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user