(
long amount,
ClockUnit unit
)
| 1434 | * @since 4.19 |
| 1435 | */ |
| 1436 | public PlainTime minus( |
| 1437 | long amount, |
| 1438 | ClockUnit unit |
| 1439 | ) { |
| 1440 | |
| 1441 | return this.plus(Math.negateExact(amount), unit); |
| 1442 | |
| 1443 | } |
| 1444 | |
| 1445 | /** |
| 1446 | * <p>Rolls this time by the given duration (as amount and unit) and |