(DataOutput out)
| 467 | } |
| 468 | |
| 469 | private void writeTimestamp(DataOutput out) |
| 470 | throws IOException { |
| 471 | |
| 472 | PlainTimestamp ts = (PlainTimestamp) this.obj; |
| 473 | writeDate(ts.getCalendarDate(), TIMESTAMP_TYPE, out); |
| 474 | writeTime(ts.getWallTime(), out); |
| 475 | |
| 476 | } |
| 477 | |
| 478 | private Object readTimestamp( |
| 479 | DataInput in, |
no test coverage detected