Remove unneeded casts.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4923 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Dave Hoover
2008-01-17 01:25:52 +00:00
parent 346e4ee781
commit 2ce35db583
3 changed files with 4 additions and 6 deletions
@@ -660,7 +660,7 @@ public class ConnectionManager extends LoopingThread
// create a new authing connection object to manage the authentication of this client
// connection and register it with our selection set
SelectableChannel selchan = (SelectableChannel)channel;
SelectableChannel selchan = channel;
selchan.configureBlocking(false);
SelectionKey selkey = selchan.register(_selector, SelectionKey.OP_READ);
_handlers.put(selkey, new AuthingConnection(this, selkey, channel));