(long minutes)
| 106 | } |
| 107 | |
| 108 | public DatePlus addMinutes(long minutes) { |
| 109 | this.localDateTime = this.localDateTime.plusMinutes(minutes); |
| 110 | return this; |
| 111 | } |
| 112 | |
| 113 | public DatePlus addSeconds(long seconds) { |
| 114 | this.localDateTime = this.localDateTime.plusSeconds(seconds); |
nothing calls this directly
no outgoing calls
no test coverage detected