Describe 'run' method here.
()
| 143 | * Describe 'run' method here. |
| 144 | */ |
| 145 | @Override |
| 146 | public void run(){ |
| 147 | try { |
| 148 | ObjectOutputStream _oos = new ObjectOutputStream(_outputStream); |
| 149 | _oos.writeObject(_object); |
| 150 | _oos.close(); |
| 151 | } catch(IOException ioe) { |
| 152 | ioe.printStackTrace(Err.getPrintWriter()); |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | private Object _object; |
| 157 | private InputStream _inputStream; |
nothing calls this directly
no test coverage detected