Skip to content

Commit 126e785

Browse files
author
alxkm
committed
checkstyle: fix pmd parentheses
1 parent 40f85da commit 126e785

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/thealgorithms/dynamicprogramming/ShortestCommonSupersequenceLength.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ static int shortestSuperSequence(String x, String y) {
2727

2828
// Result is sum of input string
2929
// lengths - length of lcs
30-
return (m + n - l);
30+
return m + n - l;
3131
}
3232

3333
/**

0 commit comments

Comments
 (0)