Commit a69c41c7 authored by Müller, Marco's avatar Müller, Marco
Browse files

fixes a missing reference

parent 9b53cdb6
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -535,7 +535,11 @@ public abstract class AbstractModelCodeTransformation<ELEMENTECLASS extends EObj
			// elements.
			// All other model elements or priorModelElements will already be set by the
			// doCreate... methods.
			final EObject childModelElement = childTransformation.getModelElement();
			EObject childModelElement = childTransformation.getModelElement();
			if (this instanceof IALTransformation) 
				childModelElement = ((IALTransformation<?, ?>) childTransformation).getIALHolder()
						.getFoundationalIALElement();
			
			if (childModelElement == null)
				continue;