-
Type:
Enhancement
-
Status: Closed
-
Priority:
P3
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 9
-
Component/s: security-libs
-
Subcomponent:
-
Resolved In Build:b127
-
Verification:Not verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8159011 | 8-pool | Sean Coffey | P3 | Closed | Won't Fix | |
JDK-8159013 | 7-pool | Sean Coffey | P3 | Closed | Won't Fix | |
JDK-8159014 | 6-pool | Sean Coffey | P3 | Closed | Won't Fix | |
JDK-8159015 | 5.0-pool | Sean Coffey | P3 | Closed | Won't Fix |
The ExemptionMechanism.finalize() is implemented as:
protected void finalize() {
keyStored = null;
// Are there anything else we could do?
}
We may want to remove this finalize() method as it really does nothing more than the default finalizer but hurt the performance (See Item 7, Effective Java).
protected void finalize() {
keyStored = null;
// Are there anything else we could do?
}
We may want to remove this finalize() method as it really does nothing more than the default finalizer but hurt the performance (See Item 7, Effective Java).
- backported by
-
JDK-8159011 Remove ExemptionMechanism.finalize() implementation
-
- Closed
-
-
JDK-8159013 Remove ExemptionMechanism.finalize() implementation
-
- Closed
-
-
JDK-8159014 Remove ExemptionMechanism.finalize() implementation
-
- Closed
-
-
JDK-8159015 Remove ExemptionMechanism.finalize() implementation
-
- Closed
-