8005535: SSLSessionImpl should have protected finalize()
authorxuelei
Mon, 13 May 2013 05:41:51 -0700
changeset 17458 4252f06a378f
parent 17457 2046a488d605
child 17459 70a7c2c1383b
8005535: SSLSessionImpl should have protected finalize() Reviewed-by: weijun, wetmore
jdk/src/share/classes/sun/security/ssl/SSLSessionImpl.java
--- 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]);