()
| 79 | } |
| 80 | |
| 81 | @Override public void close() { |
| 82 | InputThread i = stealInput(); |
| 83 | if (i != null) |
| 84 | i.close(); |
| 85 | |
| 86 | OutputThread o = stealOutput(); |
| 87 | if (o != null) |
| 88 | o.close(); |
| 89 | |
| 90 | stateChanged(); |
| 91 | } |
| 92 | |
| 93 | @Override public int getState() { |
| 94 | InputThread i = input; |
nothing calls this directly
no test coverage detected