No effective change - code cleanup - removed unused param

This commit is contained in:
Robin Bygrave
2015-08-01 19:55:52 +12:00
parent 402ab092d8
commit bb4bb64795
3 changed files with 4 additions and 4 deletions
@@ -45,14 +45,14 @@ public class BeanPropertyCompound extends BeanProperty {
/**
* Create the property.
*/
public BeanPropertyCompound(BeanDescriptorMap owner, BeanDescriptor<?> descriptor, DeployBeanPropertyCompound deploy) {
public BeanPropertyCompound(BeanDescriptor<?> descriptor, DeployBeanPropertyCompound deploy) {
super(descriptor, deploy);
this.compoundType = deploy.getCompoundType();
this.typeConverter = deploy.getTypeConverter();
BeanPropertyCompoundRoot root = deploy.getFlatProperties(owner, descriptor);
BeanPropertyCompoundRoot root = deploy.getFlatProperties();
this.scalarProperties = root.getScalarProperties();
@@ -38,7 +38,7 @@ public class DeployBeanPropertyCompound extends DeployBeanProperty {
this.typeConverter = typeConverter;
}
public BeanPropertyCompoundRoot getFlatProperties(BeanDescriptorMap owner, BeanDescriptor<?> descriptor) {
public BeanPropertyCompoundRoot getFlatProperties() {
// get a 'flat' list of all the scalar types, their relative property names
// and also set their matching dbColumn
@@ -363,7 +363,7 @@ public class DeployBeanPropertyLists {
}
if (deployProp instanceof DeployBeanPropertyCompound) {
return new BeanPropertyCompound(owner, desc, (DeployBeanPropertyCompound) deployProp);
return new BeanPropertyCompound(desc, (DeployBeanPropertyCompound) deployProp);
}
return new BeanProperty(desc, deployProp);