提交 dc319607 编写于 作者: I Ilkka Seppälä

Remove unused logger objects

上级 7c0fdad5
......@@ -23,16 +23,11 @@
package com.iluwatar.command;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Goblin is the target of the spells.
*/
public class Goblin extends Target {
private static final Logger LOGGER = LoggerFactory.getLogger(Goblin.class);
public Goblin() {
setSize(Size.NORMAL);
setVisibility(Visibility.VISIBLE);
......
......@@ -25,16 +25,12 @@ package com.iluwatar.command;
import java.util.Deque;
import java.util.LinkedList;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Wizard is the invoker of the commands.
*/
public class Wizard {
private static final Logger LOGGER = LoggerFactory.getLogger(Wizard.class);
private final Deque<Runnable> undoStack = new LinkedList<>();
private final Deque<Runnable> redoStack = new LinkedList<>();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册