Skip to content

Commit

Permalink
Fix typo in isNotNull error message
Browse files Browse the repository at this point in the history
  • Loading branch information
vanitasvitae committed Dec 3, 2024
1 parent b51a997 commit be6d005
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public void isNull(String message, Object value)
*/
public void isNotNull(Object value)
{
isNotNull("Value is not null.", value);
isNotNull("Value is null.", value);
}

/**
Expand Down

0 comments on commit be6d005

Please sign in to comment.