# HG changeset patch # User xuelei # Date 1368448911 25200 # Node ID 4252f06a378f7976083a1b4509572a371687741a # Parent 2046a488d605f8ebaef86efe60d75fc76cf63d44 8005535: SSLSessionImpl should have protected finalize() Reviewed-by: weijun, wetmore diff -r 2046a488d605 -r 4252f06a378f 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]);