Skip to content

Commit 5e34842

Browse files
author
Samuel Facchinello
committed
fix clang
1 parent 7f441c6 commit 5e34842

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ public class ColumnarTranspositionCipher {
1010

1111
private static final char PADDING_CHAR = '≈';
1212

13+
private ColumnarTranspositionCipher() {
14+
}
15+
1316
/**
1417
* Encrypts a message using the Columnar Transposition Cipher with the given key.
1518
*

src/test/java/com/thealgorithms/ciphers/ColumnarTranspositionCipherTest.java

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
package com.thealgorithms.ciphers;
22

3+
import static org.junit.jupiter.api.Assertions.assertEquals;
4+
import static org.junit.jupiter.api.Assertions.assertNotEquals;
5+
6+
import java.util.stream.Stream;
37
import org.junit.jupiter.params.ParameterizedTest;
48
import org.junit.jupiter.params.provider.Arguments;
59
import org.junit.jupiter.params.provider.MethodSource;
610

7-
import java.util.stream.Stream;
8-
9-
import static org.junit.jupiter.api.Assertions.assertEquals;
10-
import static org.junit.jupiter.api.Assertions.assertNotEquals;
11-
1211
class ColumnarTranspositionCipherTest {
1312

1413
@ParameterizedTest

0 commit comments

Comments
 (0)