19 lines
374 B
Java
Raw Normal View History

2017-05-23 01:38:02 +02:00
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
2017-05-03 17:50:35 +02:00
/**
2017-05-23 01:38:02 +02:00
* Class defining Thief
2017-05-03 17:50:35 +02:00
*/
public class Thief {
2017-05-23 01:38:02 +02:00
private static final Logger LOGGER = LoggerFactory.getLogger(Thief.class);
2017-05-03 17:50:35 +02:00
protected static void steal() {
2017-05-23 01:38:02 +02:00
LOGGER.info("Steal valuable items");
2017-05-03 17:50:35 +02:00
}
protected static void doNothing() {
2017-05-23 01:38:02 +02:00
LOGGER.info("Pretend nothing happened and just leave");
2017-05-03 17:50:35 +02:00
}
}