File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 2424
2525public abstract class AlfBase {
2626
27- public static final String ALF_VERSION = "1.1.0a" ;
27+ public static final String ALF_VERSION = "1.1.0a/maint-3 " ;
2828
2929 protected boolean isVerbose = false ;
3030
Original file line number Diff line number Diff line change @@ -175,8 +175,11 @@ public List<ElementReference> getEffectiveParameters() {
175175 } else {
176176 List <ElementReference > parameters = new ArrayList <ElementReference >();
177177 if (this .isReception ()){
178- for (ElementReference property : this .getSignal ().getImpl ().getAttributes ()) {
179- parameters .add (parameterFromProperty (property ).getImpl ().getReferent ());
178+ ElementReference signal = this .getSignal ();
179+ if (signal != null ) {
180+ for (ElementReference property : signal .getImpl ().getAttributes ()) {
181+ parameters .add (parameterFromProperty (property ).getImpl ().getReferent ());
182+ }
180183 }
181184 } else if (this .isDataType () || this .isSignal ()){
182185 for (ElementReference property : this .getAttributes ()) {
You can’t perform that action at this time.
0 commit comments