Remove deprecated Expression.join() methods

This commit is contained in:
rbygrave
2014-11-23 00:53:48 +13:00
parent 6ecb77dcc2
commit 8ea1f51c7f
2 changed files with 0 additions and 26 deletions
@@ -333,14 +333,6 @@ abstract class JunctionExpression<T> implements Junction<T>, SpiExpression, Expr
return exprList.istartsWith(propertyName, value);
}
public com.avaje.ebean.Query<T> join(String assocProperty, String assocProperties) {
return exprList.join(assocProperty, assocProperties);
}
public com.avaje.ebean.Query<T> join(String assocProperties) {
return exprList.join(assocProperties);
}
public ExpressionList<T> le(String propertyName, Object value) {
return exprList.le(propertyName, value);
}