[Minor] Code cleanup

This commit is contained in:
Robert von Burg 2021-07-19 12:07:05 +02:00
parent 7904bb45d7
commit 3e4cba757e
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ public class Action extends GroupedParameterizedElement implements IActivityElem
public Iterator<IValueChange<? extends IValue<?>>> changesIterator() {
if (this.changes == null)
return Collections.<IValueChange<? extends IValue<?>>>emptyList().iterator();
return Collections.emptyIterator();
return this.changes.iterator();
}