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

Method addSeconds

common/src/main/java/pro/tools/time/DatePlus.java:113–116  ·  view source on GitHub ↗
(long seconds)

Source from the content-addressed store, hash-verified

111 }
112
113 public DatePlus addSeconds(long seconds) {
114 this.localDateTime = this.localDateTime.plusSeconds(seconds);
115 return this;
116 }
117
118 public DatePlus addNano(long nanoSeconds) {
119 this.localDateTime = this.localDateTime.plusNanos(nanoSeconds);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected