No effective change - code cleanup - empty method

This commit is contained in:
Robin Bygrave
2015-07-31 21:09:35 +12:00
parent aa199da57d
commit 64bc0636d7
2 changed files with 5 additions and 9 deletions
@@ -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()
}
}