From 31127bd9ddf0c54ccaf55cc49c924a2fec2be71b Mon Sep 17 00:00:00 2001 From: Bjørn Christian Seime Date: Thu, 13 Jan 2022 15:32:38 +0100 Subject: Replace use of Guava's UncheckedTimeoutException with our own --- .../src/test/java/com/yahoo/concurrent/maintenance/MaintainerTest.java | 2 +- vespajlib/src/test/java/com/yahoo/time/TimeBudgetTest.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'vespajlib/src/test/java') diff --git a/vespajlib/src/test/java/com/yahoo/concurrent/maintenance/MaintainerTest.java b/vespajlib/src/test/java/com/yahoo/concurrent/maintenance/MaintainerTest.java index 7f2f0deea66..604c29e7289 100644 --- a/vespajlib/src/test/java/com/yahoo/concurrent/maintenance/MaintainerTest.java +++ b/vespajlib/src/test/java/com/yahoo/concurrent/maintenance/MaintainerTest.java @@ -1,7 +1,7 @@ // Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. package com.yahoo.concurrent.maintenance; -import com.google.common.util.concurrent.UncheckedTimeoutException; +import com.yahoo.concurrent.UncheckedTimeoutException; import org.junit.Test; import java.time.Duration; diff --git a/vespajlib/src/test/java/com/yahoo/time/TimeBudgetTest.java b/vespajlib/src/test/java/com/yahoo/time/TimeBudgetTest.java index bad95883df9..c296137dfb6 100644 --- a/vespajlib/src/test/java/com/yahoo/time/TimeBudgetTest.java +++ b/vespajlib/src/test/java/com/yahoo/time/TimeBudgetTest.java @@ -1,7 +1,7 @@ // Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. package com.yahoo.time; -import com.google.common.util.concurrent.UncheckedTimeoutException; +import com.yahoo.concurrent.UncheckedTimeoutException; import com.yahoo.test.ManualClock; import org.junit.Test; -- cgit v1.2.3