Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public DatagramSessionConfig getConfig() {
* {@inheritDoc}
*/
@Override
DatagramChannel getChannel() {
public DatagramChannel getChannel() {
return (DatagramChannel) channel;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ protected NioSession(IoProcessor<NioSession> processor, IoService service, Chann
/**
* @return The ByteChannel associated with this {@link IoSession}
*/
abstract ByteChannel getChannel();
public abstract ByteChannel getChannel();

/**
* {@inheritDoc}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public SocketSessionConfig getConfig() {
* {@inheritDoc}
*/
@Override
SocketChannel getChannel() {
public SocketChannel getChannel() {
return (SocketChannel) channel;
}

Expand Down