Skip to content
2 changes: 1 addition & 1 deletion src/java.naming/share/classes/javax/naming/Context.java
Original file line number Diff line number Diff line change
Expand Up @@ -1082,6 +1082,6 @@ public Object removeFromEnvironment(String propName)
*
* @since 1.3
*/
@Deprecated
@Deprecated(since="16", forRemoval=true)
String APPLET = "java.naming.applet";
};
Copy link
Contributor

Choose a reason for hiding this comment

The 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).

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point, since it was in fact deprecated in 9.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes - changed to since="9" this morning