From 25307cc917b41801c37df5c96d21d411a9491c26 Mon Sep 17 00:00:00 2001 From: Sunil S Nandihalli Date: Fri, 18 Sep 2015 06:23:10 +0530 Subject: [PATCH] fixed the AsyncSocket defrecord --- src/com/gearswithingears/async_sockets.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/gearswithingears/async_sockets.clj b/src/com/gearswithingears/async_sockets.clj index 4c72d60..b387ad4 100644 --- a/src/com/gearswithingears/async_sockets.clj +++ b/src/com/gearswithingears/async_sockets.clj @@ -29,7 +29,7 @@ false)) (defrecord AsyncSocket - [^Socket socket ^InetSocketAddress address in-ch out-ch]) + [^Socket socket ^InetSocketAddress address in out]) (defrecord AsyncSocketServer [^Integer port ^Integer backlog ^InetAddress bind-addr ^ServerSocket server connections])