()
| 60 | private boolean closed = false; |
| 61 | |
| 62 | @Override |
| 63 | public void close() throws IOException { |
| 64 | if (!closed) { |
| 65 | closeInput(sock); |
| 66 | closed = true; |
| 67 | } |
| 68 | super.close(); |
| 69 | } |
| 70 | |
| 71 | @Override |
| 72 | protected void finalize() throws Throwable { |
no test coverage detected