()
| 121 | } |
| 122 | |
| 123 | protected void finalize() throws Exception { |
| 124 | if (closeFd) |
| 125 | try { |
| 126 | ((SocketDescriptor)getFd()).close(); |
| 127 | } catch (IOException e) { |
| 128 | throw new Exception(e.getMessage()); |
| 129 | } |
| 130 | } |
| 131 | |
| 132 | public int getMyPort() { |
| 133 | return getSockPort(); |
nothing calls this directly
no test coverage detected