-
Bug
-
Resolution: Fixed
-
P4
-
18
-
b21
-
generic
-
generic
A DESCRIPTION OF THE PROBLEM :
The JDK source code contains the following redundant boolean operations which have no effect; some of them could be simplified and some might be bugs.
- https://github.com/openjdk/jdk/blob/7fc3a8d052bfb8d31fedec56f72b10a40ba7bf83/src/jdk.charsets/share/classes/sun/nio/cs/ext/IBM964.java.template#L206
`true &&` can be removed
- https://github.com/openjdk/jdk/blob/7fc3a8d052bfb8d31fedec56f72b10a40ba7bf83/src/jdk.charsets/share/classes/sun/nio/cs/ext/SimpleEUCEncoder.java.template#L263
`true &&` can be removed
The JDK source code contains the following redundant boolean operations which have no effect; some of them could be simplified and some might be bugs.
- https://github.com/openjdk/jdk/blob/7fc3a8d052bfb8d31fedec56f72b10a40ba7bf83/src/jdk.charsets/share/classes/sun/nio/cs/ext/IBM964.java.template#L206
`true &&` can be removed
- https://github.com/openjdk/jdk/blob/7fc3a8d052bfb8d31fedec56f72b10a40ba7bf83/src/jdk.charsets/share/classes/sun/nio/cs/ext/SimpleEUCEncoder.java.template#L263
`true &&` can be removed
- is cloned by
-
JDK-8275770 JDK source code contains redundant boolean operations in DoubleByteEncoder.java
- Open
-
JDK-8275771 JDK source code contains redundant boolean operations in jdk.compiler and langtools
- Resolved