(long hour)
| 101 | } |
| 102 | |
| 103 | public DatePlus addHour(long hour) { |
| 104 | this.localDateTime = this.localDateTime.plusHours(hour); |
| 105 | return this; |
| 106 | } |
| 107 | |
| 108 | public DatePlus addMinutes(long minutes) { |
| 109 | this.localDateTime = this.localDateTime.plusMinutes(minutes); |
nothing calls this directly
no outgoing calls
no test coverage detected