Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Nishant-Pathak committed Dec 30, 2016
1 parent e340bee commit 38937a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/com/network/mocket/example/EchoClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
public class EchoClient {

public static void main(String... args) throws MocketException, IOException, InterruptedException {
Client<byte []> client = new ClientBuilder<>().ensureDelivery(false).host("127.0.0.1", 8080).build();
final Client<byte []> client =
new ClientBuilder<>().ensureDelivery(false).host("127.0.0.1", 8080).build();

final ReadableByteChannel readableByteChannel = Channels.newChannel(System.in);
final ByteBuffer byteBuffer = ByteBuffer.allocate(1024);
Expand Down

0 comments on commit 38937a8

Please sign in to comment.