aboutsummaryrefslogtreecommitdiffstats
path: root/orchestrator
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahooinc.com>2022-01-06 07:47:08 +0000
committerArne H Juul <arnej@yahooinc.com>2022-01-06 08:17:08 +0000
commit8b7181a1fc056a3d2c572368ddbb9de04231912a (patch)
tree4d462e9e98627a558fa229eaeb8160548401da42 /orchestrator
parentb32a0e760a9e9aa9f1ed69b735c55e9fc4665711 (diff)
suppress varargs warning
Diffstat (limited to 'orchestrator')
-rw-r--r--orchestrator/src/test/java/com/yahoo/vespa/orchestrator/status/ZkStatusServiceTest.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/orchestrator/src/test/java/com/yahoo/vespa/orchestrator/status/ZkStatusServiceTest.java b/orchestrator/src/test/java/com/yahoo/vespa/orchestrator/status/ZkStatusServiceTest.java
index c5ce69bb648..5cd4830b5db 100644
--- a/orchestrator/src/test/java/com/yahoo/vespa/orchestrator/status/ZkStatusServiceTest.java
+++ b/orchestrator/src/test/java/com/yahoo/vespa/orchestrator/status/ZkStatusServiceTest.java
@@ -390,6 +390,7 @@ public class ZkStatusServiceTest {
//TODO: move to vespajlib
@SafeVarargs
+ @SuppressWarnings("varargs")
private static <T> List<T> shuffledList(T... values) {
//new ArrayList necessary to avoid "write through" behaviour
List<T> list = new ArrayList<>(Arrays.asList(values));