Fix MasterDetailTest

This commit is contained in:
Andrea Boriero 2016-04-27 16:12:06 +01:00 committed by Steve Ebersole
parent 482771ad99
commit 2d2e496e10
2 changed files with 3 additions and 3 deletions

View File

@ -529,8 +529,6 @@ public class QueryParameterBindingsImpl implements QueryParameterBindings {
);
}
parameterListBindingMap.clear();
return queryString;
}
}

View File

@ -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;
}