Resolves CR comments

This commit is contained in:
Anurag Agarwal
2020-08-03 15:45:29 +00:00
parent 10988526a2
commit 44a654a2e3
3 changed files with 3 additions and 5 deletions

View File

@ -28,10 +28,9 @@ import org.slf4j.LoggerFactory;
* Class defining Thief.
*/
public class Thief {
private static final Logger LOGGER = LoggerFactory.getLogger(Thief.class);
protected static void steal() {
protected void steal() {
LOGGER.info("Steal valuable items");
}