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