mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Cleanup of expressions after FilterExprPath now only needed on FilterExpressionList
This commit is contained in:
@@ -13,13 +13,13 @@ class InExpression extends AbstractExpression {
|
||||
|
||||
private final Object[] values;
|
||||
|
||||
InExpression(FilterExprPath pathPrefix, String propertyName, Collection<?> coll) {
|
||||
super(pathPrefix, propertyName);
|
||||
InExpression(String propertyName, Collection<?> coll) {
|
||||
super(propertyName);
|
||||
values = coll.toArray(new Object[coll.size()]);
|
||||
}
|
||||
|
||||
InExpression(FilterExprPath pathPrefix, String propertyName, Object[] array) {
|
||||
super(pathPrefix, propertyName);
|
||||
InExpression(String propertyName, Object[] array) {
|
||||
super(propertyName);
|
||||
this.values = array;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user