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
@@ -130,7 +130,7 @@ class DefaultProjectionInformation implements ProjectionInformation {
|
||||
*/
|
||||
private static class PropertyDescriptorSource {
|
||||
|
||||
private static final Logger LOG = org.slf4j.LoggerFactory.getLogger(PropertyDescriptorSource.class);
|
||||
private static final Logger logger = org.slf4j.LoggerFactory.getLogger(PropertyDescriptorSource.class);
|
||||
|
||||
private final Class<?> type;
|
||||
private final Optional<MethodsMetadata> metadata;
|
||||
@@ -237,7 +237,7 @@ class DefaultProjectionInformation implements ProjectionInformation {
|
||||
|
||||
} catch (IOException e) {
|
||||
|
||||
LOG.info("Couldn't read class metadata for {}. Input property calculation might fail!", type);
|
||||
logger.info("Couldn't read class metadata for {}. Input property calculation might fail!", type);
|
||||
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user