Skip to content

Commit

Permalink
Fix naming of class. Thanks Trustin for review
Browse files Browse the repository at this point in the history
  • Loading branch information
normanmaurer committed Feb 27, 2012
1 parent 0beaa10 commit b6700fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import io.netty.channel.ChannelEvent;
import io.netty.channel.ChannelPipeline;

public abstract class AbstractScptChannelSink extends AbstractChannelSink {
public abstract class AbstractSctpChannelSink extends AbstractChannelSink {

@Override
public void fireUpstreamEventLater(final ChannelPipeline pipeline, final ChannelEvent e) throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

/**
*/
class SctpClientPipelineSink extends AbstractScptChannelSink {
class SctpClientPipelineSink extends AbstractSctpChannelSink {

static final InternalLogger logger =
InternalLoggerFactory.getInstance(SctpClientPipelineSink.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

/**
*/
class SctpServerPipelineSink extends AbstractScptChannelSink {
class SctpServerPipelineSink extends AbstractSctpChannelSink {

static final InternalLogger logger =
InternalLoggerFactory.getInstance(SctpServerPipelineSink.class);
Expand Down

0 comments on commit b6700fb

Please sign in to comment.