Fix MasterDetailTest
This commit is contained in:
parent
482771ad99
commit
2d2e496e10
|
@ -529,8 +529,6 @@ public class QueryParameterBindingsImpl implements QueryParameterBindings {
|
|||
);
|
||||
}
|
||||
|
||||
parameterListBindingMap.clear();
|
||||
|
||||
return queryString;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -25,7 +25,9 @@ public class QueryParameterListBindingImpl<T> implements QueryParameterListBindi
|
|||
|
||||
@Override
|
||||
public void setBindValues(Collection<T> bindValues) {
|
||||
assert bindValues != null;
|
||||
if ( bindValues == null ) {
|
||||
throw new IllegalArgumentException( "Collection must be not null!" );
|
||||
}
|
||||
this.bindValues = bindValues;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue