Skip to content

Commit

Permalink
chore: Apply 3254436 to Assert.
Browse files Browse the repository at this point in the history
  • Loading branch information
nstdio committed Jan 25, 2025
1 parent 3254436 commit 0dec4c2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main/java/cz/jirutka/rsql/parser/ast/Assert.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@

import java.util.Collection;

abstract class Assert {
final class Assert {

private Assert() {
}

public static void isTrue(boolean expression, String message, Object... args) {
if (!expression) {
Expand Down

0 comments on commit 0dec4c2

Please sign in to comment.