Details
-
Bug
-
Status: Resolved
-
P4
-
Resolution: Fixed
-
None
-
b04
Description
There are some boolean expressions that could be improved for better readability in the SunJSSE provider implementation. For example:
- if (cert instanceof X509Certificate == false) {
+ if (!(cert instanceof X509Certificate)) {
- if (cert instanceof X509Certificate == false) {
+ if (!(cert instanceof X509Certificate)) {