summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2018-09-11 16:19:28 +0200
committerJon Bratseth <bratseth@oath.com>2018-09-11 16:19:28 +0200
commite8c446f16203d32fd9240484d39136a6f1724df7 (patch)
tree1d56c0c01f90811d7d92739904480afe4846d2f8
parent94d17a924f45b7f5fe76038f081de9638e1dcedd (diff)
Add header
-rw-r--r--config-model/src/main/java/com/yahoo/searchdefinition/RankingConstant.java2
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/model/ml/ModelName.java1
2 files changed, 2 insertions, 1 deletions
diff --git a/config-model/src/main/java/com/yahoo/searchdefinition/RankingConstant.java b/config-model/src/main/java/com/yahoo/searchdefinition/RankingConstant.java
index 97d911d5822..7b7265e02ae 100644
--- a/config-model/src/main/java/com/yahoo/searchdefinition/RankingConstant.java
+++ b/config-model/src/main/java/com/yahoo/searchdefinition/RankingConstant.java
@@ -58,7 +58,7 @@ public class RankingConstant {
public void setType(TensorType tensorType) { this.tensorType = tensorType; }
- /** Initiate sending of theis constant to some services over file distribution */
+ /** Initiate sending of this constant to some services over file distribution */
public void sendTo(Collection<? extends AbstractService> services) {
FileReference reference = (pathType == RankingConstant.PathType.FILE)
? FileSender.sendFileToServices(path, services)
diff --git a/config-model/src/main/java/com/yahoo/vespa/model/ml/ModelName.java b/config-model/src/main/java/com/yahoo/vespa/model/ml/ModelName.java
index 8de9a08aa88..5e22fefd093 100644
--- a/config-model/src/main/java/com/yahoo/vespa/model/ml/ModelName.java
+++ b/config-model/src/main/java/com/yahoo/vespa/model/ml/ModelName.java
@@ -1,3 +1,4 @@
+// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.model.ml;
import com.yahoo.path.Path;