Skip to content

Commit 5043123

Browse files
authored
Update GenerateSubsets.java
1 parent 6d840a2 commit 5043123

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/thealgorithms/Recursion/GenerateSubsets.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
public final class GenerateSubsets {
99

1010
private GenerateSubsets() {
11-
throw new UnsupportedOperationException("Utility class");
12-
}
11+
throw new UnsupportedOperationException("Utility class");
12+
}
1313

1414
public static List<String> subsetRecursion(String p, String up) {
1515
if (up.isEmpty()) {

0 commit comments

Comments
 (0)