From: Daniel Kirschten Date: Wed, 17 Jul 2019 11:59:01 +0000 (+0200) Subject: Fixed a stupid deserializing bug X-Git-Url: https://mograsim.net/gitweb/?a=commitdiff_plain;h=c76732ca35f07fc52ce59f9bb58ce448fc79f5ae;p=Mograsim.git Fixed a stupid deserializing bug --- diff --git a/net.mograsim.logic.model/src/net/mograsim/logic/model/snippets/highlevelstatehandlers/standard/subcomponent/DelegatingSubcomponentHighLevelStateHandler.java b/net.mograsim.logic.model/src/net/mograsim/logic/model/snippets/highlevelstatehandlers/standard/subcomponent/DelegatingSubcomponentHighLevelStateHandler.java index 3347377e..139fc965 100644 --- a/net.mograsim.logic.model/src/net/mograsim/logic/model/snippets/highlevelstatehandlers/standard/subcomponent/DelegatingSubcomponentHighLevelStateHandler.java +++ b/net.mograsim.logic.model/src/net/mograsim/logic/model/snippets/highlevelstatehandlers/standard/subcomponent/DelegatingSubcomponentHighLevelStateHandler.java @@ -29,7 +29,7 @@ public class DelegatingSubcomponentHighLevelStateHandler implements Subcomponent setDelegateTarget(parentComponent); else this.delegateTarget = parentComponent.submodel.getComponentsByName().get(params.delegateTarget); - setPrefix(prefix); + setPrefix(params.prefix); } }