No effective change - code tidy, remove unused

This commit is contained in:
rbygrave
2015-05-13 22:01:10 +12:00
parent c2faffb6f4
commit 8cb0b13ccb
2 changed files with 0 additions and 15 deletions
@@ -1271,7 +1271,6 @@ public class BeanDescriptorManager implements BeanDescriptorMap {
BeanPropertiesReader reflectProps = new BeanPropertiesReader(beanType);
BeanPropertyInfo beanReflect = reflectFactory.create(beanType);
desc.setBeanReflect(beanReflect);
desc.setProperties(reflectProps.getProperties());
for (DeployBeanProperty prop : desc.propertiesAll()) {
@@ -93,12 +93,6 @@ public class DeployBeanDescriptor<T> {
private String baseTable;
private TableName baseTableFull;
/**
* Used to provide mechanism to new EntityBean instances. Generated code
* faster than reflection at this stage.
*/
private BeanPropertyInfo beanReflect;
private String[] properties;
/**
@@ -268,14 +262,6 @@ public class DeployBeanDescriptor<T> {
return beanType;
}
/**
* Set the BeanReflect used to create new instances of an EntityBean. This
* could use reflection or code generation to do this.
*/
public void setBeanReflect(BeanPropertyInfo beanReflect) {
this.beanReflect = beanReflect;
}
/**
* Returns the Inheritance mapping information. This will be null if this type
* of bean is not involved in any ORM inheritance mapping.