mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
No effective change - code cleanup - empty method
This commit is contained in:
@@ -390,7 +390,9 @@ public class BeanPropertyAssocMany<T> extends BeanPropertyAssoc<T> {
|
||||
|
||||
@Override
|
||||
public void load(SqlBeanLoad sqlBeanLoad) throws SQLException {
|
||||
sqlBeanLoad.loadAssocMany(this);
|
||||
// do nothing, as a lazy loading BeanCollection 'reference'
|
||||
// is created and registered with the loading context
|
||||
// in SqlTreeNodeBean.createListProxies()
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -54,7 +54,7 @@ public class SqlBeanLoad {
|
||||
ctx.getDataReader().incrementPos(increment);
|
||||
}
|
||||
|
||||
public Object load(BeanProperty prop) throws SQLException {
|
||||
public Object load(BeanProperty prop) {
|
||||
|
||||
if (!rawSql && !prop.isLoadProperty()) {
|
||||
return null;
|
||||
@@ -88,11 +88,5 @@ public class SqlBeanLoad {
|
||||
throw new PersistenceException(msg, e);
|
||||
}
|
||||
}
|
||||
|
||||
public void loadAssocMany(BeanPropertyAssocMany<?> prop) {
|
||||
|
||||
// do nothing, as a lazy loading BeanCollection 'reference'
|
||||
// is created and registered with the loading context
|
||||
// in SqlTreeNodeBean.createListProxies()
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user