No effective change - code cleanup - remove unused

This commit is contained in:
Robin Bygrave
2015-07-31 22:29:32 +12:00
parent bef4e476d7
commit c581fa27ab
2 changed files with 0 additions and 20 deletions
@@ -253,20 +253,6 @@ public class ElPropertyChain implements ElPropertyValue {
return chain[last].elGetValue(prevBean);
}
public void elSetLoaded(EntityBean bean) {
for (int i = 0; i < last; i++) {
bean = (EntityBean)chain[i].elGetValue(bean);
if (bean == null){
break;
}
}
if (bean != null){
bean._ebean_getIntercept().setLoaded();
}
}
public void elSetValue(EntityBean bean, Object value, boolean populate) {
EntityBean prevBean = bean;
@@ -1,7 +1,6 @@
package com.avaje.ebeaninternal.server.el;
import com.avaje.ebean.bean.EntityBean;
import com.avaje.ebean.text.StringFormatter;
import com.avaje.ebean.text.StringParser;
/**
@@ -65,11 +64,6 @@ public interface ElPropertyValue extends ElPropertyDeploy {
*/
StringParser getStringParser();
/**
* Return the default StringFormatter for the scalar property.
*/
StringFormatter getStringFormatter();
/**
* Return true if the last type is "DateTime capable" - can support
* {@link #parseDateTime(long)}.