Skip to content

Commit 0b91f2e

Browse files
Format constructor in FindMax class
1 parent 67f743a commit 0b91f2e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/com/thealgorithms/maths/FindMax.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
package com.thealgorithms.maths;
22

33
public final class FindMax {
4-
private FindMax() {}
4+
private FindMax() {
5+
}
56

67
public static int findMax(final int[] array) {
78
if (array.length == 0) {

0 commit comments

Comments
 (0)