-
-
Notifications
You must be signed in to change notification settings - Fork 27.3k
Closed
Description
Hi, inside the README.md for the command pattern the Wizard class presents these two instance variables:
private final Deque<Command> undoStack = new LinkedList<>();
private final Deque<Command> redoStack = new LinkedList<>();The generic type for these deques should be Runnable as it is in the Wizard class under src directory
Metadata
Metadata
Assignees
Projects
Status
Done