File tree 3 files changed +3
-4
lines changed
main/java/com/thealgorithms/sorts
test/java/com/thealgorithms/ciphers 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 160
160
161
161
<!-- Checks for common coding problems -->
162
162
<!-- See https://checkstyle.org/checks/coding/index.html -->
163
- <!-- < module name="EmptyStatement"/> -- >
163
+ <module name =" EmptyStatement" />
164
164
<!-- TODO <module name="EqualsHashCode"/> -->
165
165
<!-- TODO <module name="HiddenField"/> -->
166
166
<module name =" IllegalInstantiation" />
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ public <T extends Comparable<T>> T[] sort(T[] array) {
13
13
if (n == 0 ) {
14
14
return array ;
15
15
}
16
- while (doSort (array , 0 , n - 1 ))
17
- ;
16
+ while (doSort (array , 0 , n - 1 )) {
17
+ }
18
18
return array ;
19
19
}
20
20
Original file line number Diff line number Diff line change @@ -45,7 +45,6 @@ void testDecrypt() {
45
45
+ "001101001101001001101011001000011100000011001000011011001110101010010111101111000111"
46
46
+ "101010011010110000100100110011000001010001010110010011011010001010011111000001110011001010011" ;
47
47
String expectedOutput = "Your lips are smoother than vaseline\r \n " ;
48
- ;
49
48
50
49
// when
51
50
String plainText = des .decrypt (cipherText );
You can’t perform that action at this time.
0 commit comments