Skip to content

Commit d49c63b

Browse files
committed
style: include RV_RETURN_VALUE_IGNORED
1 parent d2ddec5 commit d49c63b

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
@@ -107,9 +107,6 @@
107107
<Match>
108108
<Bug pattern="NP_IMMEDIATE_DEREFERENCE_OF_READLINE" />
109109
</Match>
110-
<Match>
111-
<Bug pattern="RV_RETURN_VALUE_IGNORED" />
112-
</Match>
113110
<Match>
114111
<Bug pattern="EQ_COMPARETO_USE_OBJECT_EQUALS" />
115112
</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)