Skip to content
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

Issue #5725 Review preventers. #5839

Merged
merged 1 commit into from
Dec 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@
*
* Note that according to the bug report, a heap dump may not identify the GCRoot, making
* it difficult to identify the cause of the leak.
*
* @deprecated reported as fixed in jdk 7, see https://bugs.java.com/bugdatabase/view_bug.do?bug_id=6916498
*/
@Deprecated
public class DOMLeakPreventer extends AbstractLeakPreventer
{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@
* RMI.
*
* Inspired by Tomcat JreMemoryLeakPrevention.
*
* @deprecated fixed in jdvm 9b130, see https://bugs.java.com/bugdatabase/view_bug.do?bug_id=JDK-8157570
*/
@Deprecated
public class GCThreadLeakPreventer extends AbstractLeakPreventer
{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@
* before webapp classloaders are created.
*
* See https://issues.apache.org/bugzilla/show_bug.cgi?id=51687
*
* @deprecated fixed in jdk 9, see https://bugs.java.com/bugdatabase/view_bug.do?bug_id=6489540
*
*/
@Deprecated
public class Java2DLeakPreventer extends AbstractLeakPreventer
{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@
* load the LdapPoolManager.
*
* Inspired by Tomcat JreMemoryLeakPrevention
*
* @deprecated fixed in jdk 8u192
*/
@Deprecated
public class LDAPLeakPreventer extends AbstractLeakPreventer
{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
* that by invoking the classloading here.
*
* Inspired by Tomcat JreMemoryLeakPrevention
* @deprecated classloader does not seem to be held any more
*/
@Deprecated
public class LoginConfigurationLeakPreventer extends AbstractLeakPreventer
{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@
* is not a webapp classloader.
*
* Inspired by Tomcat JreMemoryLeakPrevention
*
* @deprecated sun.security.pkcs11.SunPKCS11 class explicitly sets thread classloader to null
*/
@Deprecated
public class SecurityProviderLeakPreventer extends AbstractLeakPreventer
{

Expand Down