summaryrefslogtreecommitdiffstats
path: root/vespa-hadoop
diff options
context:
space:
mode:
authorMorten Tokle <mortent@verizonmedia.com>2021-12-07 12:52:42 +0100
committerMorten Tokle <mortent@verizonmedia.com>2021-12-07 12:52:42 +0100
commit5e956429169d3a733114e5f76f051167f291c786 (patch)
treefa2b9cc664c8c639482397e9a4566149dac3ae29 /vespa-hadoop
parentae09069f544a086af4ae02a092ec66788a3cae9e (diff)
Extract vespa-feed-client-api module from vespa-feed-client
Diffstat (limited to 'vespa-hadoop')
-rw-r--r--vespa-hadoop/src/main/java/ai/vespa/feed/client/DryrunResult.java18
1 files changed, 0 insertions, 18 deletions
diff --git a/vespa-hadoop/src/main/java/ai/vespa/feed/client/DryrunResult.java b/vespa-hadoop/src/main/java/ai/vespa/feed/client/DryrunResult.java
deleted file mode 100644
index 74baf9f1065..00000000000
--- a/vespa-hadoop/src/main/java/ai/vespa/feed/client/DryrunResult.java
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package ai.vespa.feed.client;
-
-import ai.vespa.feed.client.Result.Type;
-
-/**
- * Workaround for package-private {@link Result} constructor.
- *
- * @author bjorncs
- */
-public class DryrunResult {
-
- private DryrunResult() {}
-
- public static Result create(Type type, DocumentId documentId, String resultMessage, String traceMessage) {
- return new Result(type, documentId, resultMessage, traceMessage);
- }
-}