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
@@ -261,24 +261,6 @@ public interface ExpressionList<T> extends Serializable {
*/
public Query<T> select(String properties);
/**
* Specify a property (associated bean) to join and <em>fetch</em> including
* all its properties.
*
* @see Query#fetch(String)
* @deprecated
*/
public Query<T> join(String assocProperties);
/**
* Specify a property (associated bean) to join and <em>fetch</em> with its
* specific properties to include (aka partial object).
*
* @see Query#fetch(String,String)
* @deprecated
*/
public Query<T> join(String assocProperty, String assocProperties);
/**
* Set the first row to fetch.
*
@@ -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);
}