Skip to content

Commit

Permalink
Fix MasterDetailTest
Browse files Browse the repository at this point in the history
  • Loading branch information
dreab8 authored and sebersole committed May 6, 2016
1 parent 482771a commit 2d2e496
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -529,8 +529,6 @@ public String expandListValuedParameters(String queryString, SharedSessionContra
);
}

parameterListBindingMap.clear();

return queryString;
}
}
Expand Up @@ -25,7 +25,9 @@ public QueryParameterListBindingImpl(Type type) {

@Override
public void setBindValues(Collection<T> bindValues) {
assert bindValues != null;
if ( bindValues == null ) {
throw new IllegalArgumentException( "Collection must be not null!" );
}
this.bindValues = bindValues;
}

Expand Down

0 comments on commit 2d2e496

Please sign in to comment.