style: enable OperatorWrap in checkstyle (#5212)

This commit is contained in:
StarDxxx
2024-06-08 15:36:42 +08:00
committed by GitHub
parent 41efe7fbbc
commit be38886d43
2 changed files with 5 additions and 5 deletions

View File

@ -2756,8 +2756,8 @@ public final class AES {
in = input.nextLine();
BigInteger encryptionKey = new BigInteger(in, 16);
System.out.println(
"The encrypted message is: \n" +
encrypt(plaintext, encryptionKey).toString(16)
"The encrypted message is: \n"
+ encrypt(plaintext, encryptionKey).toString(16)
);
}
case 'D', 'd' -> {
@ -2772,8 +2772,8 @@ public final class AES {
in = input.nextLine();
BigInteger decryptionKey = new BigInteger(in, 16);
System.out.println(
"The deciphered message is:\n" +
decrypt(ciphertext, decryptionKey).toString(16)
"The deciphered message is:\n"
+ decrypt(ciphertext, decryptionKey).toString(16)
);
}
default -> System.out.println("** End **");