(long seconds)
| 111 | } |
| 112 | |
| 113 | public DatePlus addSeconds(long seconds) { |
| 114 | this.localDateTime = this.localDateTime.plusSeconds(seconds); |
| 115 | return this; |
| 116 | } |
| 117 | |
| 118 | public DatePlus addNano(long nanoSeconds) { |
| 119 | this.localDateTime = this.localDateTime.plusNanos(nanoSeconds); |
nothing calls this directly
no outgoing calls
no test coverage detected