(long dayOfMonth)
| 96 | } |
| 97 | |
| 98 | public DatePlus addDay(long dayOfMonth) { |
| 99 | this.localDateTime = this.localDateTime.plusDays(dayOfMonth); |
| 100 | return this; |
| 101 | } |
| 102 | |
| 103 | public DatePlus addHour(long hour) { |
| 104 | this.localDateTime = this.localDateTime.plusHours(hour); |
nothing calls this directly
no outgoing calls
no test coverage detected