-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
API: Add missing deprecations #11734
Conversation
1be0015
to
0e4ac9c
Compare
/** | ||
* Instantiates a new Bucket Transform | ||
* | ||
* @deprecated use {@link #get(int)} instead; will be removed in 2.0.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
minor: the deprecated msg is typically the other way around: will be removed in 2.0.0; use {@link #get(int)} instead
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, I think this how you typically structure a sentence in Dutch 😁
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, but would be good to update the deprecation msg format to be in-line with what other places in the codebase use
Adds some missing deprecations as based in apache#11691 Also, copied some deprecations from the interface to the implementations to make it more explicit.
0e4ac9c
to
a9324ab
Compare
Adds some missing deprecations as based in #11691
Also, copied some deprecations from the interface to the implementations to make it more explicit.