Rename uppercase 'LOGGER' static finals
Rename static final `LOGGER` members to use the lowercase form. Although the loggers are static final, they are not constant values.
This commit is contained in:
committed by
Mark Paluch
parent
c9a5a19738
commit
ea263b233b
@@ -49,7 +49,7 @@ import org.springframework.util.Assert;
|
||||
*/
|
||||
class SimplePersistentPropertyPathAccessor<T> implements PersistentPropertyPathAccessor<T> {
|
||||
|
||||
private static final Logger LOG = org.slf4j.LoggerFactory.getLogger(SimplePersistentPropertyPathAccessor.class);
|
||||
private static final Logger logger = org.slf4j.LoggerFactory.getLogger(SimplePersistentPropertyPathAccessor.class);
|
||||
|
||||
private final PersistentPropertyAccessor<T> delegate;
|
||||
|
||||
@@ -222,7 +222,7 @@ class SimplePersistentPropertyPathAccessor<T> implements PersistentPropertyPathA
|
||||
String nullIntermediateMessage = "Cannot lookup property %s on null intermediate! Original path was: %s on %s.";
|
||||
|
||||
if (SetNulls.SKIP_AND_LOG.equals(handling)) {
|
||||
LOG.info(nullIntermediateMessage);
|
||||
logger.info(nullIntermediateMessage);
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user