summaryrefslogtreecommitdiffstats
path: root/libmlr
diff options
context:
space:
mode:
authorJon Bratseth <jonbratseth@yahoo.com>2017-06-14 17:57:50 +0200
committerGitHub <noreply@github.com>2017-06-14 17:57:50 +0200
commita84e7e88923c211d6bcdc56929ade99d86813bb6 (patch)
treec283d732c23349beff4671f2167b74d9813a533c /libmlr
parentd7b09dc811c113279eeda75a131092e9175a01e7 (diff)
Revert "Update copyright headers"
Diffstat (limited to 'libmlr')
-rwxr-xr-xlibmlr/bin/xml2cpp2
-rw-r--r--libmlr/pom.xml2
-rw-r--r--libmlr/src/main/java/com/yahoo/yst/libmlr/converter/DecisionTreeXmlToCpp.java2
-rw-r--r--libmlr/src/main/java/com/yahoo/yst/libmlr/converter/MlrCodeGenException.java2
-rw-r--r--libmlr/src/main/java/com/yahoo/yst/libmlr/converter/XmlUtils.java2
-rw-r--r--libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/EarlyExit.java2
-rw-r--r--libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/Epilog.java2
-rw-r--r--libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/FuncNormalize.java2
-rw-r--r--libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/FuncPolytransform.java2
-rw-r--r--libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/Function.java2
-rw-r--r--libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/InternalNode.java2
-rw-r--r--libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/MlrFunction.java2
-rw-r--r--libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/Operator.java2
-rw-r--r--libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/ResponseNode.java2
-rw-r--r--libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/Tree.java2
-rw-r--r--libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/TreeNode.java2
-rw-r--r--libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/TreeNodeVisitor.java2
-rw-r--r--libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/TreenetFunction.java2
-rw-r--r--libmlr/src/main/java/com/yahoo/yst/libmlr/converter/parser/DecisionTreeXmlException.java2
-rw-r--r--libmlr/src/main/java/com/yahoo/yst/libmlr/converter/parser/MlrXmlParser.java2
20 files changed, 20 insertions, 20 deletions
diff --git a/libmlr/bin/xml2cpp b/libmlr/bin/xml2cpp
index 304c55f4f8e..6367d745f78 100755
--- a/libmlr/bin/xml2cpp
+++ b/libmlr/bin/xml2cpp
@@ -1,5 +1,5 @@
#!/bin/bash
-# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
# BEGIN environment bootstrap section
# Do not edit between here and END as this section should stay identical in all scripts
diff --git a/libmlr/pom.xml b/libmlr/pom.xml
index 9c0c5e06e04..46f2e5447fa 100644
--- a/libmlr/pom.xml
+++ b/libmlr/pom.xml
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
-<!-- Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
+<!-- Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.yahoo.vespa</groupId>
diff --git a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/DecisionTreeXmlToCpp.java b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/DecisionTreeXmlToCpp.java
index 98eef506194..1dc6daeec41 100644
--- a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/DecisionTreeXmlToCpp.java
+++ b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/DecisionTreeXmlToCpp.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.yst.libmlr.converter;
import java.io.BufferedReader;
diff --git a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/MlrCodeGenException.java b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/MlrCodeGenException.java
index ca28e0bde8c..9a30f82f78b 100644
--- a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/MlrCodeGenException.java
+++ b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/MlrCodeGenException.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.yst.libmlr.converter;
public class MlrCodeGenException extends RuntimeException {
diff --git a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/XmlUtils.java b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/XmlUtils.java
index f0d7edff529..022f4d31a4e 100644
--- a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/XmlUtils.java
+++ b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/XmlUtils.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.yst.libmlr.converter;
import java.util.ArrayList;
diff --git a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/EarlyExit.java b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/EarlyExit.java
index 010680c2e95..decc5e73985 100644
--- a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/EarlyExit.java
+++ b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/EarlyExit.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.yst.libmlr.converter.entity;
diff --git a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/Epilog.java b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/Epilog.java
index 45f1ddf20a4..a2ea7835869 100644
--- a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/Epilog.java
+++ b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/Epilog.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.yst.libmlr.converter.entity;
public class Epilog {
diff --git a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/FuncNormalize.java b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/FuncNormalize.java
index a783dc42d09..861c99dc3e3 100644
--- a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/FuncNormalize.java
+++ b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/FuncNormalize.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.yst.libmlr.converter.entity;
public class FuncNormalize implements Function {
diff --git a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/FuncPolytransform.java b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/FuncPolytransform.java
index 2934502b46e..9925d60cd93 100644
--- a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/FuncPolytransform.java
+++ b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/FuncPolytransform.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.yst.libmlr.converter.entity;
public class FuncPolytransform implements Function {
diff --git a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/Function.java b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/Function.java
index 95bfe7cfc7d..e2649652f52 100644
--- a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/Function.java
+++ b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/Function.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.yst.libmlr.converter.entity;
public interface Function {
diff --git a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/InternalNode.java b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/InternalNode.java
index 058235ec3b6..a63361d1d20 100644
--- a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/InternalNode.java
+++ b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/InternalNode.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.yst.libmlr.converter.entity;
diff --git a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/MlrFunction.java b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/MlrFunction.java
index f3a7c1f8677..760274dba0e 100644
--- a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/MlrFunction.java
+++ b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/MlrFunction.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.yst.libmlr.converter.entity;
diff --git a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/Operator.java b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/Operator.java
index b28d5d1f0b6..9052ee8ecc3 100644
--- a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/Operator.java
+++ b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/Operator.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.yst.libmlr.converter.entity;
public enum Operator {
diff --git a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/ResponseNode.java b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/ResponseNode.java
index fa282958cac..b2d49023458 100644
--- a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/ResponseNode.java
+++ b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/ResponseNode.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.yst.libmlr.converter.entity;
public class ResponseNode extends TreeNode {
diff --git a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/Tree.java b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/Tree.java
index 008575993a1..ba9fb278cfc 100644
--- a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/Tree.java
+++ b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/Tree.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.yst.libmlr.converter.entity;
diff --git a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/TreeNode.java b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/TreeNode.java
index a927e014600..158d4f8f788 100644
--- a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/TreeNode.java
+++ b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/TreeNode.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.yst.libmlr.converter.entity;
public class TreeNode {
diff --git a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/TreeNodeVisitor.java b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/TreeNodeVisitor.java
index 8ef4f5d25fd..5ced96fb04c 100644
--- a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/TreeNodeVisitor.java
+++ b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/TreeNodeVisitor.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.yst.libmlr.converter.entity;
public interface TreeNodeVisitor {
diff --git a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/TreenetFunction.java b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/TreenetFunction.java
index a4569df2629..2f9d4203d50 100644
--- a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/TreenetFunction.java
+++ b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/TreenetFunction.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.yst.libmlr.converter.entity;
import java.util.ArrayList;
diff --git a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/parser/DecisionTreeXmlException.java b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/parser/DecisionTreeXmlException.java
index ab264b51d29..3f792ef991f 100644
--- a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/parser/DecisionTreeXmlException.java
+++ b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/parser/DecisionTreeXmlException.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.yst.libmlr.converter.parser;
public class DecisionTreeXmlException extends RuntimeException {
diff --git a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/parser/MlrXmlParser.java b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/parser/MlrXmlParser.java
index 1c52b5e9309..a689aefcb98 100644
--- a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/parser/MlrXmlParser.java
+++ b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/parser/MlrXmlParser.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.yst.libmlr.converter.parser;
import com.yahoo.yst.libmlr.converter.XmlUtils;