Return true for valid port numbers.
(int port)
| 326 | /** Return true for valid port numbers. */ |
| 327 | |
| 328 | private static boolean isValidPort(int port) { |
| 329 | return port >= 0 && port <= 65535; |
| 330 | } |
| 331 | |
| 332 | private static final long serialVersionUID = 0; |
| 333 | } |
no outgoing calls
no test coverage detected