mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
No effective change - code cleanup - remove unused
This commit is contained in:
@@ -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)}.
|
||||
|
||||
Reference in New Issue
Block a user