(Socket socket)
| 22 | class ServerThread extends Thread { |
| 23 | |
| 24 | private final Socket socket; |
| 25 | private final int count; |
| 26 | |
| 27 | public ServerThread(Socket socket, int count) { |
| 28 | this.socket = socket; |
| 29 | this.count = count; |
nothing calls this directly
no outgoing calls
no test coverage detected