summaryrefslogtreecommitdiffstats
path: root/orchestrator-restapi
diff options
context:
space:
mode:
authorHåkon Hallingstad <hakon@oath.com>2017-10-27 09:26:28 +0200
committerHåkon Hallingstad <hakon@oath.com>2017-10-27 09:26:28 +0200
commit0f1ff74f9a24371df350f256d3f9eb879fe21e19 (patch)
tree4b5b6db79b043fa41e11001163effab6aaa0e72e /orchestrator-restapi
parent8e3174722f05a2ca0e5fb3acd08d7df786b2cee2 (diff)
Remove unused GetHostResponse constructor
Diffstat (limited to 'orchestrator-restapi')
-rw-r--r--orchestrator-restapi/src/main/java/com/yahoo/vespa/orchestrator/restapi/wire/GetHostResponse.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/orchestrator-restapi/src/main/java/com/yahoo/vespa/orchestrator/restapi/wire/GetHostResponse.java b/orchestrator-restapi/src/main/java/com/yahoo/vespa/orchestrator/restapi/wire/GetHostResponse.java
index 38801c4c817..775ab3a6c5c 100644
--- a/orchestrator-restapi/src/main/java/com/yahoo/vespa/orchestrator/restapi/wire/GetHostResponse.java
+++ b/orchestrator-restapi/src/main/java/com/yahoo/vespa/orchestrator/restapi/wire/GetHostResponse.java
@@ -26,14 +26,6 @@ public class GetHostResponse {
private final String applicationUrl;
private final List<HostService> services;
- // Deprecated - kept for backwards compatibility until clients have migrated away
- public GetHostResponse(String hostname, String state) {
- this.hostname = hostname;
- this.state = state;
- this.applicationUrl = null;
- this.services = null;
- }
-
@JsonCreator
public GetHostResponse(
@JsonProperty(FIELD_NAME_HOSTNAME) String hostname,