@@ -769,7 +769,7 @@ static <T> IsInWithSubselect<T> isIn(Buildable<SelectModel> selectModelBuilder)
769
769
770
770
@ SafeVarargs
771
771
static <T > IsInWhenPresent <T > isInWhenPresent (T ... values ) {
772
- return values == null ? IsInWhenPresent . empty () : IsInWhenPresent .of (values );
772
+ return IsInWhenPresent .of (values );
773
773
}
774
774
775
775
static <T > IsInWhenPresent <T > isInWhenPresent (Collection <T > values ) {
@@ -791,7 +791,7 @@ static <T> IsNotInWithSubselect<T> isNotIn(Buildable<SelectModel> selectModelBui
791
791
792
792
@ SafeVarargs
793
793
static <T > IsNotInWhenPresent <T > isNotInWhenPresent (T ... values ) {
794
- return values == null ? IsNotInWhenPresent . empty () : IsNotInWhenPresent .of (values );
794
+ return IsNotInWhenPresent .of (values );
795
795
}
796
796
797
797
static <T > IsNotInWhenPresent <T > isNotInWhenPresent (Collection <T > values ) {
@@ -914,7 +914,7 @@ static IsInCaseInsensitive isInCaseInsensitive(Collection<String> values) {
914
914
}
915
915
916
916
static IsInCaseInsensitiveWhenPresent isInCaseInsensitiveWhenPresent (String ... values ) {
917
- return values == null ? IsInCaseInsensitiveWhenPresent . empty () : IsInCaseInsensitiveWhenPresent .of (values );
917
+ return IsInCaseInsensitiveWhenPresent .of (values );
918
918
}
919
919
920
920
static IsInCaseInsensitiveWhenPresent isInCaseInsensitiveWhenPresent (Collection <String > values ) {
@@ -930,8 +930,7 @@ static IsNotInCaseInsensitive isNotInCaseInsensitive(Collection<String> values)
930
930
}
931
931
932
932
static IsNotInCaseInsensitiveWhenPresent isNotInCaseInsensitiveWhenPresent (String ... values ) {
933
- return values == null ? IsNotInCaseInsensitiveWhenPresent .empty () :
934
- IsNotInCaseInsensitiveWhenPresent .of (values );
933
+ return IsNotInCaseInsensitiveWhenPresent .of (values );
935
934
}
936
935
937
936
static IsNotInCaseInsensitiveWhenPresent isNotInCaseInsensitiveWhenPresent (Collection <String > values ) {
0 commit comments