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

Method addHour

common/src/main/java/pro/tools/time/DatePlus.java:103–106  ·  view source on GitHub ↗
(long hour)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected