Skip to content

Commit 3d7a6ea

Browse files
Reformatted code using clang formatter
1 parent 9a6a84c commit 3d7a6ea

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
*/
55
public final class ComplexNumberMultiplication {
66
private ComplexNumberMultiplication() {
7-
87
}
98
/**
109
* Multiplies two complex numbers given as strings.

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ public static String removeStars(String input) {
2929
char currentChar = input.charAt(i);
3030
if (currentChar != '*') {
3131
result.append(currentChar);
32-
}
33-
else {
32+
} else {
3433
result.deleteCharAt(result.length() - 1);
3534
}
3635
}

0 commit comments

Comments
 (0)