follow up

This commit is contained in:
Craig Raw 2022-07-14 15:37:48 +02:00
parent 67bc479ae9
commit d489aa6af9

View file

@ -325,7 +325,7 @@ public class WalletNode extends Persistable implements Comparable<WalletNode> {
copy.setId(getId());
copy.setLabel(label);
for(WalletNode child : new ArrayList<>(getChildren())) {
for(WalletNode child : getChildren()) {
copy.children.add(child.copy(walletCopy));
}