#567 fix version and javadoc
This commit is contained in:
@ -1,12 +1,18 @@
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
/**
|
||||
* Created by Alexis on 02-May-17.
|
||||
* Class defining Thief
|
||||
*/
|
||||
public class Thief {
|
||||
|
||||
private static final Logger LOGGER = LoggerFactory.getLogger(Thief.class);
|
||||
|
||||
protected static void steal() {
|
||||
System.out.println("Steal valuable items");
|
||||
LOGGER.info("Steal valuable items");
|
||||
}
|
||||
|
||||
protected static void doNothing() {
|
||||
System.out.println("Pretend nothing happened and just leave");
|
||||
LOGGER.info("Pretend nothing happened and just leave");
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user