On Tue, 12 Apr 2022 21:59:09 GMT, Mark Powers <d...@openjdk.java.net> wrote:
> JDK-8284112 Minor cleanup could be done in javax.crypto src/java.base/share/classes/javax/crypto/CryptoPermission.java line 437: > 435: // may be the best try. > 436: return this.algParamSpec.equals(algParamSpec); > 437: } else return !this.checkParam; Please use the standard coding format. } else { return !this.checkParam; } or } return !this.checkParam; ------------- PR: https://git.openjdk.java.net/jdk/pull/8214