aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/main
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2018-12-01 07:35:14 -0800
committerJon Bratseth <bratseth@oath.com>2018-12-01 07:35:14 -0800
commit051c699dee05fc0a2f5e9a83ddd49016114d8bfb (patch)
treea94c05da756ff987d198a8bea2b9bf5149771546 /config/src/main
parentc0513ac34d2c438e9f97e699659855029e1f06e8 (diff)
Deprecate com.yahoo.config.provision.Version
We have com.yahoo.component.Version, and one is enough.
Diffstat (limited to 'config/src/main')
-rw-r--r--config/src/main/java/com/yahoo/vespa/config/protocol/VespaVersion.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/config/src/main/java/com/yahoo/vespa/config/protocol/VespaVersion.java b/config/src/main/java/com/yahoo/vespa/config/protocol/VespaVersion.java
index 8ef202f8f05..c136916f06f 100644
--- a/config/src/main/java/com/yahoo/vespa/config/protocol/VespaVersion.java
+++ b/config/src/main/java/com/yahoo/vespa/config/protocol/VespaVersion.java
@@ -5,9 +5,9 @@ package com.yahoo.vespa.config.protocol;
* A wrapper class for Vespa version
*
* @author hmusum
- * @since 5.39
*/
public class VespaVersion {
+
private final String version;
public static VespaVersion fromString(String version) {
@@ -39,4 +39,5 @@ public class VespaVersion {
public String toString() {
return version;
}
+
}