diff --git a/common/src/main/java/org/apache/iceberg/common/DynFields.java b/common/src/main/java/org/apache/iceberg/common/DynFields.java index 1b982d206fdb..e88affa0cbdd 100644 --- a/common/src/main/java/org/apache/iceberg/common/DynFields.java +++ b/common/src/main/java/org/apache/iceberg/common/DynFields.java @@ -394,7 +394,7 @@ public BoundField build(Object target) { * @return a {@link StaticField} with a valid implementation * @throws IllegalStateException if the method is not static * @throws NoSuchFieldException if no implementation was found - * @deprecated since 1.7.0, will be removed in 2.0.0 + * @deprecated since 1.6.0, will be removed in 1.7.0 */ @Deprecated public StaticField buildStaticChecked() throws NoSuchFieldException { diff --git a/common/src/main/java/org/apache/iceberg/common/DynMethods.java b/common/src/main/java/org/apache/iceberg/common/DynMethods.java index eaaad876f133..fc0e578c7dd1 100644 --- a/common/src/main/java/org/apache/iceberg/common/DynMethods.java +++ b/common/src/main/java/org/apache/iceberg/common/DynMethods.java @@ -51,7 +51,7 @@ public static class UnboundMethod { (method == null || method.isVarArgs()) ? -1 : method.getParameterTypes().length; } - /** @deprecated since 1.7.0, will be removed in 2.0.0 */ + /** @deprecated since 1.6.0, will be removed in 1.7.0 */ @Deprecated // will become private @SuppressWarnings("unchecked") public R invokeChecked(Object target, Object... args) throws Exception { @@ -315,7 +315,7 @@ public Builder impl(Class targetClass, Class... argClasses) { return this; } - /** @deprecated since 1.7.0, will be removed in 2.0.0 */ + /** @deprecated since 1.6.0, will be removed in 1.7.0 */ @Deprecated public Builder ctorImpl(Class targetClass, Class... argClasses) { // don't do any work if an implementation has been found @@ -331,7 +331,7 @@ public Builder ctorImpl(Class targetClass, Class... argClasses) { return this; } - /** @deprecated since 1.7.0, will be removed in 2.0.0 */ + /** @deprecated since 1.6.0, will be removed in 1.7.0 */ @Deprecated public Builder ctorImpl(String className, Class... argClasses) { // don't do any work if an implementation has been found