626364656667686970717273747576
} @Override public Operation resume(RunContext run) throws WorldEditException { while (iterator.hasNext()) { Change change = iterator.next(); if (type == Type.UNDO) { change.undo(context); } else { change.redo(context); } } return null; }