Remove unused logger objects

This commit is contained in:
Ilkka Seppälä 2020-11-08 19:37:15 +02:00
parent 7c0fdad5a2
commit dc31960710
2 changed files with 0 additions and 9 deletions

View File

@ -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);

View File

@ -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<>();