-
Notifications
You must be signed in to change notification settings - Fork 6.1k
JDK-8189198: Add "forRemoval = true" to Applet APIs #1127
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
Changes from 1 commit
3ca19ac
cba3dc5
3119588
a74deee
877c8e7
d9850cd
c6ea771
bc781be
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1082,6 +1082,6 @@ public Object removeFromEnvironment(String propName) | |
| * | ||
| * @since 1.3 | ||
| */ | ||
| @Deprecated(since="16", forRemoval=true) | ||
| @Deprecated(since="9", forRemoval=true) | ||
| String APPLET = "java.naming.applet"; | ||
| }; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Probably should be since="9" (the deprecation in JDK-8051422 pre-dates the enhanced deprecation work). There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good point, since it was in fact deprecated in 9. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes - changed to since="9" this morning |
||
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.
That should be
@deprecated This package .... See java/rmi/activation/package-info.java#L41.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.
The deprecation description should point to the new API which might be used instead of the deprecated ones. So the text "deprecated without replacement" was intentionally added, it will be good to preserve it.