MCPcopy Create free account
hub / github.com/SeanDragon/protools / addMonth

Method addMonth

common/src/main/java/pro/tools/time/DatePlus.java:88–91  ·  view source on GitHub ↗
(long month)

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected