Skip to content

Commit

Permalink
Removing unused setter methods on SpawnResult Builder.
Browse files Browse the repository at this point in the history
RELNOTES: None.
PiperOrigin-RevId: 268469269
  • Loading branch information
Googler authored and copybara-github committed Sep 11, 2019
1 parent c463134 commit 2d0046a
Showing 1 changed file with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -475,21 +475,6 @@ public Builder setNumInvoluntaryContextSwitches(long numInvoluntaryContextSwitch
return this;
}

public Builder setWallTime(Optional<Duration> wallTime) {
this.wallTime = wallTime;
return this;
}

public Builder setUserTime(Optional<Duration> userTime) {
this.userTime = userTime;
return this;
}

public Builder setSystemTime(Optional<Duration> systemTime) {
this.systemTime = systemTime;
return this;
}

public Builder setCacheHit(boolean cacheHit) {
this.cacheHit = cacheHit;
return this;
Expand Down

0 comments on commit 2d0046a

Please sign in to comment.