aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/main/java/com/yahoo/document/ExtendedField.java
diff options
context:
space:
mode:
Diffstat (limited to 'document/src/main/java/com/yahoo/document/ExtendedField.java')
-rw-r--r--document/src/main/java/com/yahoo/document/ExtendedField.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/document/src/main/java/com/yahoo/document/ExtendedField.java b/document/src/main/java/com/yahoo/document/ExtendedField.java
index 7b897bd9845..31bbd3e9234 100644
--- a/document/src/main/java/com/yahoo/document/ExtendedField.java
+++ b/document/src/main/java/com/yahoo/document/ExtendedField.java
@@ -1,16 +1,16 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.document;
import com.yahoo.document.datatypes.FieldValue;
import com.yahoo.document.datatypes.StructuredFieldValue;
/**
- * This adds an Extractor to the Field that can be used to get access the backed value
+ * This adds an Extractor to the Field that can be used to access the backed value
* used in the concrete document types.
* @author baldersheim
*/
public class ExtendedField extends Field {
- public static interface Extract {
+ public interface Extract {
Object get(StructuredFieldValue doc);
void set(StructuredFieldValue doc, Object value);
}