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 @@ -10,8 +10,8 @@ public class CircleSort implements SortAlgorithm {
10
10
@ Override
11
11
public <T extends Comparable <T >> T [] sort (T [] array ) {
12
12
int n = array .length ;
13
- while (doSort (array , 0 , n - 1 ))
14
- ;
13
+ while (doSort (array , 0 , n - 1 )) {
14
+ }
15
15
return array ;
16
16
}
17
17
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