-
Bug
-
Resolution: Fixed
-
P4
-
None
-
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)) {