summaryrefslogtreecommitdiffstats
path: root/document
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2018-10-30 10:09:25 +0100
committerJon Bratseth <bratseth@oath.com>2018-10-30 10:09:25 +0100
commitda8209cb5bea57efbe1d31081330085cedaef205 (patch)
tree5b9d31d293c2a9ab7c5ac7dd44f4b0678b9708d5 /document
parentbc3fea89a5f3fcfd8b39ad9ac7e831137a009ed8 (diff)
Fix javadoc
Diffstat (limited to 'document')
-rw-r--r--document/src/main/java/com/yahoo/document/DocumentUpdate.java6
1 files changed, 1 insertions, 5 deletions
diff --git a/document/src/main/java/com/yahoo/document/DocumentUpdate.java b/document/src/main/java/com/yahoo/document/DocumentUpdate.java
index 970fff3bddb..0bbb57ec60b 100644
--- a/document/src/main/java/com/yahoo/document/DocumentUpdate.java
+++ b/document/src/main/java/com/yahoo/document/DocumentUpdate.java
@@ -293,11 +293,7 @@ public class DocumentUpdate extends DocumentOperation implements Iterable<FieldP
addFieldUpdates(fieldUpdates);
}
- /**
- * Temporary proxy to setFieldUpdates(Collection<FieldUpdate>) to preserve binary compatibility.
- * @param fieldUpdates
- */
- @Deprecated
+ /** The same as setFieldUpdates(Collection&lt;FieldUpdate&gt;) */
public void setFieldUpdates(List<FieldUpdate> fieldUpdates) {
setFieldUpdates((Collection<FieldUpdate>) fieldUpdates);
}