HADOOP-18724. (followup) remove deprecation on optLong/optDouble methods (#5650)

Somehow @Deprecated crept in to the declaration of the
new FSBuilder optLong/optDouble methods.
This commit is contained in:
Steve Loughran 2023-05-12 15:22:37 +01:00 committed by GitHub
parent 0f3406ac34
commit ad1e3a0f5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -146,7 +146,6 @@ public interface FSBuilder<S, B extends FSBuilder<S, B>> {
* @return generic type B. * @return generic type B.
* @see #opt(String, String) * @see #opt(String, String)
*/ */
@Deprecated
B optLong(@Nonnull String key, long value); B optLong(@Nonnull String key, long value);
/** /**
@ -157,7 +156,6 @@ public interface FSBuilder<S, B extends FSBuilder<S, B>> {
* @return generic type B. * @return generic type B.
* @see #opt(String, String) * @see #opt(String, String)
*/ */
@Deprecated
B optDouble(@Nonnull String key, double value); B optDouble(@Nonnull String key, double value);
/** /**