summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2018-03-08 16:22:01 +0100
committerJon Bratseth <bratseth@oath.com>2018-03-08 16:22:01 +0100
commit8f21c54b669202cdcc1a04934762dceebb929308 (patch)
treecddb1bf2cb106b5eb92594785f7daef69f41e3b4 /config
parentf19b783d4014f799482daa13f8f8c26d5c4c84d9 (diff)
Add TensorFlow variable converter
Diffstat (limited to 'config')
-rw-r--r--config/src/main/java/com/yahoo/vespa/config/SlimeUtils.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/src/main/java/com/yahoo/vespa/config/SlimeUtils.java b/config/src/main/java/com/yahoo/vespa/config/SlimeUtils.java
index 46888b5454c..bc1b2c90364 100644
--- a/config/src/main/java/com/yahoo/vespa/config/SlimeUtils.java
+++ b/config/src/main/java/com/yahoo/vespa/config/SlimeUtils.java
@@ -11,11 +11,11 @@ import java.util.Optional;
* Extra utilities/operations on slime trees that we would like to have as part of slime in the future, but
* which resides here until we have a better place to put it.
*
- * @author lulf
- * @since 5.8
+ * @author Ulf Lilleengen
*/
public class SlimeUtils {
- public static void copyObject(Inspector from, final Cursor to) {
+
+ public static void copyObject(Inspector from, Cursor to) {
if (from.type() != Type.OBJECT) {
throw new IllegalArgumentException("Cannot copy object: " + from);
}