From 52f15b2b082f617c93bf43c6a337ac993d8b18fa Mon Sep 17 00:00:00 2001 From: Piotr Idzik <65706193+vil02@users.noreply.github.com> Date: Thu, 9 May 2024 17:23:22 +0200 Subject: [PATCH] style: include `RV_RETURN_VALUE_IGNORED` (#5152) --- spotbugs-exclude.xml | 3 --- src/main/java/com/thealgorithms/ciphers/HillCipher.java | 1 - 2 files changed, 4 deletions(-) diff --git a/spotbugs-exclude.xml b/spotbugs-exclude.xml index 3f87cfef872..0e8a67c73b7 100644 --- a/spotbugs-exclude.xml +++ b/spotbugs-exclude.xml @@ -104,9 +104,6 @@ - - - diff --git a/src/main/java/com/thealgorithms/ciphers/HillCipher.java b/src/main/java/com/thealgorithms/ciphers/HillCipher.java index a858eb40293..14b98b3cc2f 100644 --- a/src/main/java/com/thealgorithms/ciphers/HillCipher.java +++ b/src/main/java/com/thealgorithms/ciphers/HillCipher.java @@ -144,7 +144,6 @@ public static int determinant(int[][] a, int n) { // Function to implement Hill Cipher static void hillCipher(String message) { - message.toUpperCase(); System.out.println("What do you want to process from the message?"); System.out.println("Press 1: To Encrypt"); System.out.println("Press 2: To Decrypt");