(String[] args)
| 8 | static int port = 1; |
| 9 | |
| 10 | public static void main(String[] args) { |
| 11 | |
| 12 | for (int i = 1; i < 65534; i++) { |
| 13 | new A.AcceptThread().start(); |
| 14 | |
| 15 | port++; |
| 16 | } |
| 17 | |
| 18 | |
| 19 | } |
| 20 | |
| 21 | static class AcceptThread extends Thread { |
| 22 |
nothing calls this directly
no outgoing calls
no test coverage detected