Return the minimum deadline of this or an other deadline. They must be created using the same Ticker. @param other deadline to compare with this.
(Deadline other)
| 146 | * @param other deadline to compare with {@code this}. |
| 147 | */ |
| 148 | public Deadline minimum(Deadline other) { |
| 149 | checkTicker(other); |
| 150 | return isBefore(other) ? this : other; |
| 151 | } |
| 152 | |
| 153 | /** |
| 154 | * Create a new deadline that is offset from {@code this}. |