Skip to content
Merged
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 @@ -51,11 +51,13 @@ private Jep380SocketChannelAdapter(final SocketChannel channel, final Jep380Sock
@Override
public void connect(final SocketAddress endpoint, final int timeout) throws IOException {
channel.connect(endpoint);
channel.configureBlocking(false);
}

@Override
public void connect(final SocketAddress endpoint) throws IOException {
channel.connect(endpoint);
channel.configureBlocking(false);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ final class Jep380SocketChannelImplAdapter extends SocketImpl {

public Jep380SocketChannelImplAdapter(final SocketChannel channel) throws IOException {
this.channel = channel;
channel.configureBlocking(false);
}

@Override
Expand Down