(long millisToSubtract)
| 61 | } |
| 62 | |
| 63 | public Instant minusMillis(long millisToSubtract) { |
| 64 | return plusMillis(-millisToSubtract); |
| 65 | } |
| 66 | |
| 67 | public int compareTo(Instant other) { |
| 68 | if (epochSecond != other.epochSecond) { |
nothing calls this directly
no test coverage detected