Return true for valid port numbers.
(int port)
| 314 | |
| 315 | /** Return true for valid port numbers. */ |
| 316 | private static boolean isValidPort(int port) { |
| 317 | return port >= 0 && port <= 65535; |
| 318 | } |
| 319 | |
| 320 | private static final long serialVersionUID = 0; |
| 321 | } |
no outgoing calls
no test coverage detected