summaryrefslogtreecommitdiffstats
path: root/dummy-persistence
diff options
context:
space:
mode:
authorJon Bratseth <jonbratseth@yahoo.com>2017-06-14 17:21:56 +0200
committerGitHub <noreply@github.com>2017-06-14 17:21:56 +0200
commitd7b09dc811c113279eeda75a131092e9175a01e7 (patch)
treec3bb3995db89a30b6b6145c1d8860043377faccc /dummy-persistence
parent0b863030d8faf851dbaf6427b3cdb0d92d99b203 (diff)
parenta07d24f2484d4ca56bcd5a1ddd18438ced099ae7 (diff)
Merge pull request #2774 from yahoo/bratseth/update-copyright-headers
Update copyright headers
Diffstat (limited to 'dummy-persistence')
-rw-r--r--dummy-persistence/pom.xml2
-rw-r--r--dummy-persistence/src/main/java/com/yahoo/persistence/dummy/BucketContents.java2
-rw-r--r--dummy-persistence/src/main/java/com/yahoo/persistence/dummy/DummyPersistenceProvider.java2
-rw-r--r--dummy-persistence/src/main/java/com/yahoo/persistence/dummy/DummyPersistenceProviderHandler.java2
-rw-r--r--dummy-persistence/src/main/java/com/yahoo/persistence/dummy/IteratorContext.java2
-rw-r--r--dummy-persistence/src/main/java/com/yahoo/persistence/dummy/package-info.java2
-rw-r--r--dummy-persistence/src/test/java/com/yahoo/persistence/dummy/DummyPersistenceTest.java2
7 files changed, 7 insertions, 7 deletions
diff --git a/dummy-persistence/pom.xml b/dummy-persistence/pom.xml
index fe2f343017a..100d78ad6a9 100644
--- a/dummy-persistence/pom.xml
+++ b/dummy-persistence/pom.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!-- Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
+<!-- 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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
diff --git a/dummy-persistence/src/main/java/com/yahoo/persistence/dummy/BucketContents.java b/dummy-persistence/src/main/java/com/yahoo/persistence/dummy/BucketContents.java
index 4c76cc908b4..40251405858 100644
--- a/dummy-persistence/src/main/java/com/yahoo/persistence/dummy/BucketContents.java
+++ b/dummy-persistence/src/main/java/com/yahoo/persistence/dummy/BucketContents.java
@@ -1,4 +1,4 @@
-// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.dummy;
import com.yahoo.collections.Pair;
diff --git a/dummy-persistence/src/main/java/com/yahoo/persistence/dummy/DummyPersistenceProvider.java b/dummy-persistence/src/main/java/com/yahoo/persistence/dummy/DummyPersistenceProvider.java
index 3650f8dc5b0..4eee730a28b 100644
--- a/dummy-persistence/src/main/java/com/yahoo/persistence/dummy/DummyPersistenceProvider.java
+++ b/dummy-persistence/src/main/java/com/yahoo/persistence/dummy/DummyPersistenceProvider.java
@@ -1,4 +1,4 @@
-// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.dummy;
import com.yahoo.collections.Pair;
diff --git a/dummy-persistence/src/main/java/com/yahoo/persistence/dummy/DummyPersistenceProviderHandler.java b/dummy-persistence/src/main/java/com/yahoo/persistence/dummy/DummyPersistenceProviderHandler.java
index ea36f158f62..34e7a948b76 100644
--- a/dummy-persistence/src/main/java/com/yahoo/persistence/dummy/DummyPersistenceProviderHandler.java
+++ b/dummy-persistence/src/main/java/com/yahoo/persistence/dummy/DummyPersistenceProviderHandler.java
@@ -1,4 +1,4 @@
-// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.dummy;
import com.yahoo.document.DocumentTypeManager;
diff --git a/dummy-persistence/src/main/java/com/yahoo/persistence/dummy/IteratorContext.java b/dummy-persistence/src/main/java/com/yahoo/persistence/dummy/IteratorContext.java
index ac39fd8f670..dd9b734216a 100644
--- a/dummy-persistence/src/main/java/com/yahoo/persistence/dummy/IteratorContext.java
+++ b/dummy-persistence/src/main/java/com/yahoo/persistence/dummy/IteratorContext.java
@@ -1,4 +1,4 @@
-// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.dummy;
import com.yahoo.document.fieldset.FieldSet;
diff --git a/dummy-persistence/src/main/java/com/yahoo/persistence/dummy/package-info.java b/dummy-persistence/src/main/java/com/yahoo/persistence/dummy/package-info.java
index 4155537e41b..8abb7de8d67 100644
--- a/dummy-persistence/src/main/java/com/yahoo/persistence/dummy/package-info.java
+++ b/dummy-persistence/src/main/java/com/yahoo/persistence/dummy/package-info.java
@@ -1,4 +1,4 @@
-// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
@ExportPackage
@PublicApi
package com.yahoo.persistence.dummy;
diff --git a/dummy-persistence/src/test/java/com/yahoo/persistence/dummy/DummyPersistenceTest.java b/dummy-persistence/src/test/java/com/yahoo/persistence/dummy/DummyPersistenceTest.java
index 6fa3af9b40d..edd1dc12d8b 100644
--- a/dummy-persistence/src/test/java/com/yahoo/persistence/dummy/DummyPersistenceTest.java
+++ b/dummy-persistence/src/test/java/com/yahoo/persistence/dummy/DummyPersistenceTest.java
@@ -1,4 +1,4 @@
-// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.dummy;
import com.yahoo.document.DocumentTypeManager;