The (correct) comment to the Expression.count function says that a null argument should be interpreted as "count *". Unfortunately, the function parameter is marked @NonNull.
Replace the annotation to allow the argument to be null, and make a null param act as "count *"
The (correct) comment to the Expression.count function says that a null argument should be interpreted as "count *". Unfortunately, the function parameter is marked @NonNull.
Replace the annotation to allow the argument to be null, and make a null param act as "count *"