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