summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorJon Marius Venstad <jonmv@users.noreply.github.com>2019-11-04 13:12:04 +0100
committerGitHub <noreply@github.com>2019-11-04 13:12:04 +0100
commitd99e553e2b8358203dcbb0edde53ae14b51042a7 (patch)
treed1fb0ac4a8785bdc3c9e4d5602e8c00810e1aa67 /controller-api
parente6df5d420e5bb664c5adeb561151828cc1ed0139 (diff)
parent59d99b7a98416a0eec86f1557e6f275955a5a5fb (diff)
Merge pull request #11195 from vespa-engine/jvenstad/convert-more-deployment-tests
Jvenstad/convert more deployment tests
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/ApplicationVersion.java7
1 files changed, 2 insertions, 5 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/ApplicationVersion.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/ApplicationVersion.java
index b1dad7d814e..fb9745d90cb 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/ApplicationVersion.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/ApplicationVersion.java
@@ -115,15 +115,12 @@ public class ApplicationVersion implements Comparable<ApplicationVersion> {
if (!(o instanceof ApplicationVersion)) return false;
ApplicationVersion that = (ApplicationVersion) o;
return Objects.equals(source, that.source) &&
- Objects.equals(authorEmail, that.authorEmail) &&
- Objects.equals(buildNumber, that.buildNumber) &&
- Objects.equals(compileVersion, that.compileVersion) &&
- Objects.equals(buildTime, that.buildTime);
+ Objects.equals(buildNumber, that.buildNumber);
}
@Override
public int hashCode() {
- return Objects.hash(source, authorEmail, buildNumber, compileVersion, buildTime);
+ return Objects.hash(source, buildNumber);
}
@Override