summaryrefslogtreecommitdiffstats
path: root/sample-apps/boolean-search
diff options
context:
space:
mode:
Diffstat (limited to 'sample-apps/boolean-search')
-rw-r--r--sample-apps/boolean-search/adsdata.xml1
-rw-r--r--sample-apps/boolean-search/pom.xml1
-rw-r--r--sample-apps/boolean-search/src/main/application/deployment.xml1
-rw-r--r--sample-apps/boolean-search/src/main/application/searchdefinitions/ad.sd1
-rw-r--r--sample-apps/boolean-search/src/main/application/services.xml1
-rw-r--r--sample-apps/boolean-search/src/main/java/com/yahoo/example/SubqueriesSearcher.java1
-rw-r--r--sample-apps/boolean-search/src/test/application/services.xml1
-rw-r--r--sample-apps/boolean-search/src/test/java/com/yahoo/example/MockBackend.java1
-rw-r--r--sample-apps/boolean-search/src/test/java/com/yahoo/example/SubqueriesSearcherTest.java1
-rw-r--r--sample-apps/boolean-search/src/test/resources/adsdata.xml1
10 files changed, 0 insertions, 10 deletions
diff --git a/sample-apps/boolean-search/adsdata.xml b/sample-apps/boolean-search/adsdata.xml
index e5992a9b1a0..70c7519d902 100644
--- a/sample-apps/boolean-search/adsdata.xml
+++ b/sample-apps/boolean-search/adsdata.xml
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
<vespafeed>
<document type="ad" documentid="id:sampleapp:ad::http://example.com/sled">
diff --git a/sample-apps/boolean-search/pom.xml b/sample-apps/boolean-search/pom.xml
index 944511e37b2..f3e6bcd14d2 100644
--- a/sample-apps/boolean-search/pom.xml
+++ b/sample-apps/boolean-search/pom.xml
@@ -1,5 +1,4 @@
<?xml version="1.0"?>
-<!-- Copyright 2017 Yahoo Holdings. 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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.yahoo.example</groupId>
diff --git a/sample-apps/boolean-search/src/main/application/deployment.xml b/sample-apps/boolean-search/src/main/application/deployment.xml
index b36abba9d57..454e2cb861d 100644
--- a/sample-apps/boolean-search/src/main/application/deployment.xml
+++ b/sample-apps/boolean-search/src/main/application/deployment.xml
@@ -1,4 +1,3 @@
-<!-- Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
<deployment version='1.0'>
<test />
<staging />
diff --git a/sample-apps/boolean-search/src/main/application/searchdefinitions/ad.sd b/sample-apps/boolean-search/src/main/application/searchdefinitions/ad.sd
index 10724eb7b09..704c9712bcb 100644
--- a/sample-apps/boolean-search/src/main/application/searchdefinitions/ad.sd
+++ b/sample-apps/boolean-search/src/main/application/searchdefinitions/ad.sd
@@ -1,4 +1,3 @@
-# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
search ad {
document ad {
diff --git a/sample-apps/boolean-search/src/main/application/services.xml b/sample-apps/boolean-search/src/main/application/services.xml
index 2f2febd719f..e19a46b055a 100644
--- a/sample-apps/boolean-search/src/main/application/services.xml
+++ b/sample-apps/boolean-search/src/main/application/services.xml
@@ -1,5 +1,4 @@
<?xml version='1.0' encoding='UTF-8'?>
-<!-- Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
<services version='1.0'>
<admin version='3.0'>
diff --git a/sample-apps/boolean-search/src/main/java/com/yahoo/example/SubqueriesSearcher.java b/sample-apps/boolean-search/src/main/java/com/yahoo/example/SubqueriesSearcher.java
index f8107c33eb2..0243cd4e431 100644
--- a/sample-apps/boolean-search/src/main/java/com/yahoo/example/SubqueriesSearcher.java
+++ b/sample-apps/boolean-search/src/main/java/com/yahoo/example/SubqueriesSearcher.java
@@ -1,4 +1,3 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.example;
import com.yahoo.data.access.Inspectable;
diff --git a/sample-apps/boolean-search/src/test/application/services.xml b/sample-apps/boolean-search/src/test/application/services.xml
index fcb7455d959..1444a26c59f 100644
--- a/sample-apps/boolean-search/src/test/application/services.xml
+++ b/sample-apps/boolean-search/src/test/application/services.xml
@@ -1,5 +1,4 @@
<?xml version='1.0' encoding='UTF-8'?>
-<!-- Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
<services version='1.0'>
<admin version='3.0'>
<nodes count="1" />
diff --git a/sample-apps/boolean-search/src/test/java/com/yahoo/example/MockBackend.java b/sample-apps/boolean-search/src/test/java/com/yahoo/example/MockBackend.java
index ca2dc924893..0c92eec1c2f 100644
--- a/sample-apps/boolean-search/src/test/java/com/yahoo/example/MockBackend.java
+++ b/sample-apps/boolean-search/src/test/java/com/yahoo/example/MockBackend.java
@@ -1,4 +1,3 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.example;
import com.yahoo.data.access.simple.Value;
diff --git a/sample-apps/boolean-search/src/test/java/com/yahoo/example/SubqueriesSearcherTest.java b/sample-apps/boolean-search/src/test/java/com/yahoo/example/SubqueriesSearcherTest.java
index 3bef09454de..ea29533081a 100644
--- a/sample-apps/boolean-search/src/test/java/com/yahoo/example/SubqueriesSearcherTest.java
+++ b/sample-apps/boolean-search/src/test/java/com/yahoo/example/SubqueriesSearcherTest.java
@@ -1,4 +1,3 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.example;
import com.yahoo.application.Application;
diff --git a/sample-apps/boolean-search/src/test/resources/adsdata.xml b/sample-apps/boolean-search/src/test/resources/adsdata.xml
index b5e49263cbd..e4c23ae983a 100644
--- a/sample-apps/boolean-search/src/test/resources/adsdata.xml
+++ b/sample-apps/boolean-search/src/test/resources/adsdata.xml
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
<vespafeed>
<document type="ad" documentid="id:sampleapp:ad::http://example.com/sled">