8005535: SSLSessionImpl should have protected finalize()
Reviewed-by: weijun, wetmore
--- a/jdk/src/share/classes/sun/security/ssl/SSLSessionImpl.java Fri May 10 23:56:24 2013 +0400
+++ b/jdk/src/share/classes/sun/security/ssl/SSLSessionImpl.java Mon May 13 05:41:51 2013 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -822,7 +822,7 @@
* them are removed.
*/
@Override
- public void finalize() {
+ protected void finalize() throws Throwable {
String[] names = getValueNames();
for (int i = 0; i < names.length; i++) {
removeValue(names[i]);