No effective change - code cleanup - remove unused

This commit is contained in:
Robin Bygrave
2015-08-01 17:40:40 +12:00
parent 0c9bcca584
commit ca1f95df7a
2 changed files with 0 additions and 18 deletions
@@ -59,11 +59,6 @@ public abstract class BeanPropertyAssoc<T> extends BeanProperty {
final String mappedBy;
/**
* Whether the associated join type should be an outer join.
*/
final boolean isOuterJoin;
final String extraWhere;
boolean saveRecurseSkippable;
@@ -76,7 +71,6 @@ public abstract class BeanPropertyAssoc<T> extends BeanProperty {
public BeanPropertyAssoc(BeanDescriptor<?> descriptor, DeployBeanPropertyAssoc<T> deploy) {
super(descriptor, deploy);
this.extraWhere = InternString.intern(deploy.getExtraWhere());
this.isOuterJoin = deploy.isOuterJoin();
this.beanTable = deploy.getBeanTable();
this.mappedBy = InternString.intern(deploy.getMappedBy());
@@ -28,11 +28,6 @@ public abstract class DeployBeanPropertyAssoc<T> extends DeployBeanProperty {
*/
final DeployTableJoin tableJoin = new DeployTableJoin();
/**
* Whether the associated join type should be an outer join.
*/
boolean isOuterJoin = false;
/**
* Literal added to where clause of lazy loading query.
*/
@@ -70,13 +65,6 @@ public abstract class DeployBeanPropertyAssoc<T> extends DeployBeanProperty {
return targetType;
}
/**
* Return if this association should use an Outer join.
*/
public boolean isOuterJoin() {
return isOuterJoin;
}
/**
* Return a literal expression that is added to the query that lazy loads
* the collection.