Skip to content

Commit d1506a4

Browse files
authored
fix: private constructor update
1 parent a963879 commit d1506a4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main/java/com/thealgorithms/strings/SuffixArray.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212

1313
public final class SuffixArray {
1414

15+
private SuffixArray() {
16+
}
17+
1518
public static int[] buildSuffixArray(String text) {
1619
int n = text.length();
1720
Integer[] suffixArray = new Integer[n];

0 commit comments

Comments
 (0)