minor improvements

This commit is contained in:
Stephan Richter
2020-12-10 20:18:31 +01:00
parent 0855a943eb
commit 49185e79a2
5 changed files with 15 additions and 6 deletions

View File

@@ -225,4 +225,9 @@ public class ActionList extends Action implements Iterable<Action>{
actions.remove(child);
super.removeChild(child);
}
@Override
public String toString() {
return actions.toString();
}
}