No effective change - remove unused methods

This commit is contained in:
Robin Bygrave
2015-08-02 09:17:10 +12:00
parent e1d6bf5961
commit 3a14b4c87f
3 changed files with 2 additions and 18 deletions
@@ -46,14 +46,6 @@ public abstract class DeployBeanPropertyAssoc<T> extends DeployBeanProperty {
this.targetType = targetType;
}
/**
* Return false.
*/
@Override
public boolean isScalar() {
return false;
}
/**
* Return the type of the target.
* <p>
@@ -221,10 +221,6 @@ public class ElPropertyChain implements ElPropertyValue {
return scalarType;
}
public StringFormatter getStringFormatter() {
return scalarType;
}
public Object elConvertType(Object value) {
// just convert using the last one in the chain
return lastElPropertyValue.elConvertType(value);
@@ -13,6 +13,8 @@ public class FilterExpressionList<T> extends DefaultExpressionList<T> {
private static final long serialVersionUID = 2226895827150099020L;
private static final String notAllowedMessage = "This method is not allowed on a filter";
private final Query<T> rootQuery;
private final FilterExprPath pathPrefix;
@@ -34,12 +36,6 @@ public class FilterExpressionList<T> extends DefaultExpressionList<T> {
return new FilterExpressionList<T>(pathPrefix.trimPath(prefixTrim), this);
}
public FilterExprPath getPathPrefix() {
return pathPrefix;
}
private final String notAllowedMessage = "This method is not allowed on a filter";
@Override
public ExpressionList<T> filterMany(String prop) {
return rootQuery.filterMany(prop);