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

renamed AbstractTcpReader stage

parent 257f709d
No related branches found
No related tags found
No related merge requests found
#FindBugs User Preferences #FindBugs User Preferences
#Mon Jun 15 14:19:55 CEST 2015 #Tue Jun 16 14:12:15 CEST 2015
detector_threshold=2 detector_threshold=2
effort=max effort=max
excludefilter0=.fbExcludeFilterFile|true excludefilter0=.fbExcludeFilterFile|true
......
...@@ -24,12 +24,12 @@ import java.nio.channels.SocketChannel; ...@@ -24,12 +24,12 @@ import java.nio.channels.SocketChannel;
import teetime.framework.AbstractProducerStage; import teetime.framework.AbstractProducerStage;
public abstract class AbstractTcpReader<T> extends AbstractProducerStage<T> { public abstract class AbstractTcpReaderStage<T> extends AbstractProducerStage<T> {
private final int port; private final int port;
private final int bufferCapacity; private final int bufferCapacity;
public AbstractTcpReader(final int port, final int bufferCapacity) { public AbstractTcpReaderStage(final int port, final int bufferCapacity) {
super(); super();
this.port = port; this.port = port;
this.bufferCapacity = bufferCapacity; this.bufferCapacity = bufferCapacity;
......
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