summaryrefslogtreecommitdiffstats
path: root/vespajlib
diff options
context:
space:
mode:
authorHÃ¥kon Hallingstad <hakon@oath.com>2018-10-30 09:15:53 +0100
committerGitHub <noreply@github.com>2018-10-30 09:15:53 +0100
commitb83edd843e9eddd36d57f07f919bcf6475196363 (patch)
tree193da8781cffcfa821a9f43ea5531f36f3eb0476 /vespajlib
parent522ecd04d8a655ad99f4b915ea37e7c5c3cbb39b (diff)
Revert "Revert "Revert "Enforce CC timeouts in Orchestrator 2"""
Diffstat (limited to 'vespajlib')
-rw-r--r--vespajlib/src/main/java/com/yahoo/time/TimeBudget.java12
1 files changed, 0 insertions, 12 deletions
diff --git a/vespajlib/src/main/java/com/yahoo/time/TimeBudget.java b/vespajlib/src/main/java/com/yahoo/time/TimeBudget.java
index 449b0d6bd05..a7963df0208 100644
--- a/vespajlib/src/main/java/com/yahoo/time/TimeBudget.java
+++ b/vespajlib/src/main/java/com/yahoo/time/TimeBudget.java
@@ -66,18 +66,6 @@ public class TimeBudget {
});
}
- /** Returns the time left, possibly negative if the deadline has passed. */
- public Optional<Duration> timeLeft() {
- return timeout.map(timeout -> timeout.minus(timePassed()));
- }
-
- /** Returns the time left as a new TimeBudget. */
- public TimeBudget timeLeftAsTimeBudget() {
- Instant now = clock.instant();
- Optional<Instant> deadline = deadline();
- return new TimeBudget(clock, now, deadline.map(d -> Duration.between(now, d)));
- }
-
private static Duration nonNegativeBetween(Instant start, Instant end) {
return makeNonNegative(Duration.between(start, end));
}