JDK 17 | JDK 18 |
---|---|
17.0.2Fixed | 18 b04Fixed |
Relates :
|
SonarCloud reports: "Remove or correct this useless self-assignment." if (cipherAlgo.equals("AES")) { this.keysize = keysize; // <---- here switch (keysize) { case 128: cipherAlgo_OID = aes128CBC_OID; Seems to be here since initial addition in JDK-6383200.
|