(long month)
| 86 | } |
| 87 | |
| 88 | public DatePlus addMonth(long month) { |
| 89 | this.localDateTime = this.localDateTime.plusMonths(month); |
| 90 | return this; |
| 91 | } |
| 92 | |
| 93 | public DatePlus addWeek(long week) { |
| 94 | this.localDateTime = this.localDateTime.plusWeeks(week); |
nothing calls this directly
no outgoing calls
no test coverage detected