Skip to content

Commit b0cc094

Browse files
AddeusExMachinaAntonio Addeo
and
Antonio Addeo
authored
fix: Fix generic type for deques in command README.md files Ref: iluwatar#2462 (iluwatar#2484)
Co-authored-by: Antonio Addeo <[email protected]>
1 parent cf64d6a commit b0cc094

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

command/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ Here's the sample code with wizard and goblin. Let's start from the `Wizard` cla
4040
@Slf4j
4141
public class Wizard {
4242

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

4646
public Wizard() {}
4747

localization/zh/command/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public class Wizard {
3434

3535
private static final Logger LOGGER = LoggerFactory.getLogger(Wizard.class);
3636

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

4040
public Wizard() {}
4141

0 commit comments

Comments
 (0)