Skip to content
Snippets Groups Projects
Commit 24f691d7 authored by Nelson Tavares de Sousa's avatar Nelson Tavares de Sousa
Browse files

StartingSignal will only be passed on on the first occurrence

parent 43f27c9d
No related branches found
No related tags found
No related merge requests found
...@@ -30,7 +30,7 @@ public final class StartingSignal implements ISignal { ...@@ -30,7 +30,7 @@ public final class StartingSignal implements ISignal {
@Override @Override
public boolean mayBeTriggered(final Set<InputPort<?>> receivedInputPorts, final List<InputPort<?>> allInputPorts) { public boolean mayBeTriggered(final Set<InputPort<?>> receivedInputPorts, final List<InputPort<?>> allInputPorts) {
return true; return receivedInputPorts.size() == 1;
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment