diff --git a/de.bmotionstudio.gef.editor/src/de/bmotionstudio/gef/editor/attribute/AbstractAttribute.java b/de.bmotionstudio.gef.editor/src/de/bmotionstudio/gef/editor/attribute/AbstractAttribute.java index adbacbd3e26882d6e7fe7085f04fae428e96f784..67a47dd5d78b54d5420c382fc5209447de17ed5b 100644 --- a/de.bmotionstudio.gef.editor/src/de/bmotionstudio/gef/editor/attribute/AbstractAttribute.java +++ b/de.bmotionstudio.gef.editor/src/de/bmotionstudio/gef/editor/attribute/AbstractAttribute.java @@ -55,9 +55,7 @@ public abstract class AbstractAttribute implements IPropertySource, Cloneable { } public void addChild(AbstractAttribute atr) { - if (!getChildren().containsKey(atr.getID())) { - getChildren().put(atr.getID(), atr); - } + getChildren().put(atr.getID(), atr); } public Boolean hasChildren() {