aboutsummaryrefslogtreecommitdiffstats
path: root/service-monitor
diff options
context:
space:
mode:
authorHåkon Hallingstad <hakon@verizonmedia.com>2021-07-29 15:40:34 +0200
committerHåkon Hallingstad <hakon@verizonmedia.com>2021-07-29 15:40:34 +0200
commitcf8fe2952ef7133d9fa4d769d8dec47984422734 (patch)
tree85132dee349ab4ce413920b4573621ae5bfc78fe /service-monitor
parent8eb4c2dd3aa750c2ebcee4e1736f99e98d89c3bf (diff)
Avoid references to unexported classes
Diffstat (limited to 'service-monitor')
-rw-r--r--service-monitor/src/main/java/com/yahoo/vespa/service/duper/ProxyApplication.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/service-monitor/src/main/java/com/yahoo/vespa/service/duper/ProxyApplication.java b/service-monitor/src/main/java/com/yahoo/vespa/service/duper/ProxyApplication.java
deleted file mode 100644
index 7bc4facbfa8..00000000000
--- a/service-monitor/src/main/java/com/yahoo/vespa/service/duper/ProxyApplication.java
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.vespa.service.duper;
-
-import com.yahoo.config.provision.ApplicationId;
-
-/**
- * The proxy application is an ordinary non-infrastructure application. Still, it may be useful
- * to refer to e.g. the ApplicationId of the proxy application, hence this class.
- *
- * @author hakonhall
- */
-public class ProxyApplication {
- private static final ApplicationId APPLICATION_ID = new ApplicationId.Builder()
- .tenant(InfraApplication.TENANT_NAME)
- .applicationName("routing")
- .build();
-
- public ApplicationId getApplicationId() {
- return APPLICATION_ID;
- }
-}