Skip to content

Commit 1480482

Browse files
committed
style: include RV_RETURN_VALUE_IGNORED
1 parent 27c0978 commit 1480482

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

spotbugs-exclude.xml

-3
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,6 @@
104104
<Match>
105105
<Bug pattern="NP_IMMEDIATE_DEREFERENCE_OF_READLINE" />
106106
</Match>
107-
<Match>
108-
<Bug pattern="RV_RETURN_VALUE_IGNORED" />
109-
</Match>
110107
<Match>
111108
<Bug pattern="EQ_COMPARETO_USE_OBJECT_EQUALS" />
112109
</Match>

src/main/java/com/thealgorithms/ciphers/HillCipher.java

-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,6 @@ public static int determinant(int[][] a, int n) {
144144

145145
// Function to implement Hill Cipher
146146
static void hillCipher(String message) {
147-
message.toUpperCase();
148147
System.out.println("What do you want to process from the message?");
149148
System.out.println("Press 1: To Encrypt");
150149
System.out.println("Press 2: To Decrypt");

0 commit comments

Comments
 (0)