From openjdk-jmx-dev Wed Nov 30 17:29:57 2022 From: Daniel Fuchs Date: Wed, 30 Nov 2022 17:29:57 +0000 To: openjdk-jmx-dev Subject: Re: jmx-dev RFR: 8297794: Deprecate JMX Management Applets for Removal [v3] Message-Id: X-MARC-Message: https://marc.info/?l=openjdk-jmx-dev&m=166982899301280 On Wed, 30 Nov 2022 17:02:45 GMT, Kevin Walls wrote: >> Deprecate the Java Management Extension (JMX) Management Applet (m-let) feature for removal. >> >> This deprecation will have no impact on users of other JMX features, the JDK's built-in instrumentation, or any of the observability tools. >> >> More details in bug, and CSR JDK-8297795 > > Kevin Walls has updated the pull request incrementally with one additional commit since the last revision: > > Deprecated annotation on the package-private classes src/java.management/share/classes/javax/management/loading/MLetParser.java line 254: > 252: * Parse the document pointed by the URL urlname > 253: */ > 254: @SuppressWarnings({"deprecation", "removal"}) You might have to keep "removal", but I suspect "deprecation" should no longer be necessary, now that this class is deprecated (though I might be wrong). ------------- PR: https://git.openjdk.org/jdk/pull/11430