[Bugfix] fixed bug where type was not copied when cloned

This commit is contained in:
Robert von Burg 2014-09-08 13:55:07 +02:00
parent 523d44c41e
commit 92286c9b13
1 changed files with 1 additions and 0 deletions

View File

@ -289,6 +289,7 @@ public abstract class GroupedParameterizedElement extends AbstractStrolchElement
*/
protected void fillClone(GroupedParameterizedElement clone) {
super.fillClone(clone);
clone.setType(getType());
if (this.parameterBagMap != null) {
for (ParameterBag bag : this.parameterBagMap.values()) {