-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P4
-
Affects Version/s: None
-
Component/s: security-libs
-
b04
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)) {