(
long amount,
U unit
)
| 695 | * @since 2.0 |
| 696 | */ |
| 697 | public MachineTime<U> minus( |
| 698 | long amount, |
| 699 | U unit |
| 700 | ) { |
| 701 | |
| 702 | return this.plus(Math.negateExact(amount), unit); |
| 703 | |
| 704 | } |
| 705 | |
| 706 | /** |
| 707 | * <p>Subtracts given temporal amount from this machine time. </p> |
no test coverage detected