vidakovic commented on code in PR #3372:
URL: https://github.com/apache/fineract/pull/3372#discussion_r1296880623
##########
fineract-provider/src/main/java/org/apache/fineract/useradministration/service/PasswordPreferencesWritePlatformServiceJpaRepositoryImpl.java:
##########
@@ -32,20 +32,16 @@
import
org.apache.fineract.useradministration.exception.PasswordValidationPolicyNotFoundException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
-import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.dao.DataIntegrityViolationException;
import org.springframework.orm.jpa.JpaSystemException;
-import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
-@Service
public class PasswordPreferencesWritePlatformServiceJpaRepositoryImpl
implements PasswordPreferencesWritePlatformService {
private static final Logger LOG =
LoggerFactory.getLogger(PasswordPreferencesWritePlatformServiceJpaRepositoryImpl.class);
Review Comment:
Remove this logger (uppercase "LOG") and replace it with a lower case "log"
(provided by the `@Slf4j` Lombok annotation. Cleaning up code where we can :-)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]