(
DataInput in,
byte header
)
| 476 | } |
| 477 | |
| 478 | private Object readTimestamp( |
| 479 | DataInput in, |
| 480 | byte header |
| 481 | ) throws IOException { |
| 482 | |
| 483 | PlainDate date = readDate(in, header); |
| 484 | PlainTime time = readTime(in); |
| 485 | return PlainTimestamp.of(date, time); |
| 486 | |
| 487 | } |
| 488 | |
| 489 | private void writeDuration(ObjectOutput out) |
| 490 | throws IOException { |
no test coverage detected