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

set method final

parent a1c81133
No related branches found
No related tags found
No related merge requests found
......@@ -164,7 +164,7 @@ public abstract class AbstractStage {
/**
* Execute this method, to add a stage to the configuration, which should be executed in a own thread.
*
*
* @param threadName
* A string which can be used for debugging.
*/
......@@ -198,7 +198,7 @@ public abstract class AbstractStage {
* May not be invoked outside of IPipe implementations
*/
@SuppressWarnings("PMD.DataflowAnomalyAnalysis")
public void onSignal(final ISignal signal, final InputPort<?> inputPort) {
public final void onSignal(final ISignal signal, final InputPort<?> inputPort) {
Class<? extends ISignal> signalClass = signal.getClass();
Set<InputPort<?>> signalReceivedInputPorts;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment