()
| 199 | |
| 200 | |
| 201 | static public String ip() { |
| 202 | try { |
| 203 | return InetAddress.getLocalHost().getHostAddress(); |
| 204 | } catch (UnknownHostException e) { |
| 205 | e.printStackTrace(); |
| 206 | return null; |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | |
| 211 | // the last index used for available. can't just cycle through |
nothing calls this directly
no test coverage detected