summaryrefslogtreecommitdiffstats
path: root/dummy-persistence
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2017-06-13 18:43:39 +0200
committerJon Bratseth <bratseth@yahoo-inc.com>2017-06-13 18:43:39 +0200
commit4e5d87a9baa4176a1089f7afd1f433a8da275725 (patch)
tree23f2b54901b81b5c56dbf4a8c064658985962ead /dummy-persistence
parent76221b9e73ad7a76a8179663e638b545a470c325 (diff)
Copyright header
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;