Skip to content

Commit

Permalink
fix conflicts
Browse files Browse the repository at this point in the history
Signed-off-by: georgi-l95 <[email protected]>
  • Loading branch information
georgi-l95 committed Dec 6, 2024
1 parent 094d037 commit 40aca65
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ public static String requireNotBlank(final String toCheck) {
*/
public static String requireNotBlank(final String toCheck, final String errorMessage) {
if (StringUtilities.isBlank(toCheck)) {
final String message = Objects.isNull(errorMessage) ? "The input String is required to be non-blank."
: errorMessage;
final String message =
Objects.isNull(errorMessage) ? "The input String is required to be non-blank." : errorMessage;
throw new IllegalArgumentException(message);
} else {
return toCheck;
Expand Down Expand Up @@ -257,6 +257,5 @@ public static int requirePowerOfTwo(final int toCheck, final String errorMessage
}
}

private Preconditions() {
}
}
private Preconditions() {}
}

0 comments on commit 40aca65

Please sign in to comment.