Remove unused logger objects
This commit is contained in:
parent
7c0fdad5a2
commit
dc31960710
@ -23,16 +23,11 @@
|
|||||||
|
|
||||||
package com.iluwatar.command;
|
package com.iluwatar.command;
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
|
||||||
import org.slf4j.LoggerFactory;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Goblin is the target of the spells.
|
* Goblin is the target of the spells.
|
||||||
*/
|
*/
|
||||||
public class Goblin extends Target {
|
public class Goblin extends Target {
|
||||||
|
|
||||||
private static final Logger LOGGER = LoggerFactory.getLogger(Goblin.class);
|
|
||||||
|
|
||||||
public Goblin() {
|
public Goblin() {
|
||||||
setSize(Size.NORMAL);
|
setSize(Size.NORMAL);
|
||||||
setVisibility(Visibility.VISIBLE);
|
setVisibility(Visibility.VISIBLE);
|
||||||
|
@ -25,16 +25,12 @@ package com.iluwatar.command;
|
|||||||
|
|
||||||
import java.util.Deque;
|
import java.util.Deque;
|
||||||
import java.util.LinkedList;
|
import java.util.LinkedList;
|
||||||
import org.slf4j.Logger;
|
|
||||||
import org.slf4j.LoggerFactory;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Wizard is the invoker of the commands.
|
* Wizard is the invoker of the commands.
|
||||||
*/
|
*/
|
||||||
public class Wizard {
|
public class Wizard {
|
||||||
|
|
||||||
private static final Logger LOGGER = LoggerFactory.getLogger(Wizard.class);
|
|
||||||
|
|
||||||
private final Deque<Runnable> undoStack = new LinkedList<>();
|
private final Deque<Runnable> undoStack = new LinkedList<>();
|
||||||
private final Deque<Runnable> redoStack = new LinkedList<>();
|
private final Deque<Runnable> redoStack = new LinkedList<>();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user