Changeset 12721 in josm
- Timestamp:
- 2017-09-04T02:45:09+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/SequenceCommand.java
r12718 r12721 34 34 * Create the command by specifying the list of commands to execute. 35 35 * @param name The description text 36 * @param sequenz The sequence that should be executed 36 * @param sequenz The sequence that should be executed. Must not be null or empty 37 37 * @param continueOnError Determines if the sequence execution should continue after one of its commands fails 38 38 * @since 11874 39 39 */ 40 40 public SequenceCommand(String name, Collection<Command> sequenz, boolean continueOnError) { 41 super(sequenz.iterator().next().getAffectedDataSet()); 41 42 this.name = name; 42 43 this.sequence = sequenz.toArray(new Command[sequenz.size()]);
Note:
See TracChangeset
for help on using the changeset viewer.