()
| 16 | private ObjectInputStream mIn; |
| 17 | |
| 18 | public Parcel() { |
| 19 | try { |
| 20 | mOutStream = new ByteArrayOutputStream(); |
| 21 | mOut = new ObjectOutputStream(mOutStream); |
| 22 | } catch (Exception ex) { |
| 23 | ex.printStackTrace(); |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | public final void flush() { |
| 28 | try { |
nothing calls this directly
no outgoing calls
no test coverage detected