File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -40,8 +40,8 @@ Here's the sample code with wizard and goblin. Let's start from the `Wizard` cla
40
40
@Slf4j
41
41
public class Wizard {
42
42
43
- private final Deque<Command > undoStack = new LinkedList<> ();
44
- private final Deque<Command > redoStack = new LinkedList<> ();
43
+ private final Deque<Runnable > undoStack = new LinkedList<> ();
44
+ private final Deque<Runnable > redoStack = new LinkedList<> ();
45
45
46
46
public Wizard () {}
47
47
Original file line number Diff line number Diff line change @@ -34,8 +34,8 @@ public class Wizard {
34
34
35
35
private static final Logger LOGGER = LoggerFactory . getLogger(Wizard . class);
36
36
37
- private final Deque<Command > undoStack = new LinkedList<> ();
38
- private final Deque<Command > redoStack = new LinkedList<> ();
37
+ private final Deque<Runnable > undoStack = new LinkedList<> ();
38
+ private final Deque<Runnable > redoStack = new LinkedList<> ();
39
39
40
40
public Wizard () {}
41
41
You can’t perform that action at this time.
0 commit comments