1516171819202122
private ServerParser parser; private User user; public ServerConnection(SocketChannel income) throws IOException { super(income); parser = new ServerParser(this); user = new User(this); }