Skip to content
Snippets Groups Projects
Commit 8386b66b authored by Christian Wulf's avatar Christian Wulf
Browse files

renamed attribute

parent f2392748
No related branches found
No related tags found
No related merge requests found
#FindBugs User Preferences #FindBugs User Preferences
#Tue Jun 16 14:12:15 CEST 2015 #Thu Jun 18 09:21:56 CEST 2015
detector_threshold=2 detector_threshold=2
effort=max effort=max
excludefilter0=.fbExcludeFilterFile|true excludefilter0=.fbExcludeFilterFile|true
......
...@@ -27,7 +27,7 @@ import teetime.framework.validation.InvalidPortConnection; ...@@ -27,7 +27,7 @@ import teetime.framework.validation.InvalidPortConnection;
public abstract class AbstractStage extends Stage { public abstract class AbstractStage extends Stage {
private static final IPipe DUMMY_PORT = new DummyPipe(); private static final IPipe DUMMY_PIPE = new DummyPipe();
private final Set<Class<? extends ISignal>> triggeredSignalTypes = new HashSet<Class<? extends ISignal>>(); private final Set<Class<? extends ISignal>> triggeredSignalTypes = new HashSet<Class<? extends ISignal>>();
...@@ -115,7 +115,7 @@ public abstract class AbstractStage extends Stage { ...@@ -115,7 +115,7 @@ public abstract class AbstractStage extends Stage {
if (logger.isInfoEnabled()) { if (logger.isInfoEnabled()) {
this.logger.info("Unconnected output port: " + outputPort + ". Connecting with a dummy output port."); this.logger.info("Unconnected output port: " + outputPort + ". Connecting with a dummy output port.");
} }
outputPort.setPipe(DUMMY_PORT); outputPort.setPipe(DUMMY_PIPE);
} }
} }
} }
......
wiki @ 0a5bd4dd
Subproject commit 0a5bd4ddb82684ce1ae2ec84c67ff2117ebff143
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