(String[] args)
| 40 | |
| 41 | |
| 42 | public static void main(String[] args) { |
| 43 | Server server = new Server(); |
| 44 | ServerFrame serverFrame = new ServerFrame(server); |
| 45 | server.setServerFrame(serverFrame); |
| 46 | serverFrame.setVisible(true); |
| 47 | } |
| 48 | |
| 49 | public void close() { |
| 50 | if(serverThread != null){ |
nothing calls this directly
no test coverage detected