Changeset 16568 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2020-06-07T22:46:54+02:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/UndoRedoHandler.java
r16567 r16568 23 23 24 24 /** 25 * All commands that were made on the dataset . Don't write from outside!25 * All commands that were made on the dataset 26 26 * 27 27 * @see #getLastCommand() 28 28 * @see #getUndoCommands() 29 29 */ 30 p ublicfinal LinkedList<Command> commands = new LinkedList<>();30 private final LinkedList<Command> commands = new LinkedList<>(); 31 31 32 32 /** … … 35 35 * @see #getRedoCommands() 36 36 */ 37 p ublicfinal LinkedList<Command> redoCommands = new LinkedList<>();37 private final LinkedList<Command> redoCommands = new LinkedList<>(); 38 38 39 39 private final LinkedList<CommandQueueListener> listenerCommands = new LinkedList<>();
Note:
See TracChangeset
for help on using the changeset viewer.