No effective change - code cleanup - BeanProperty - remove unused extraAttributeMap

This commit is contained in:
Robin Bygrave
2015-07-31 20:45:58 +12:00
parent 972609281f
commit ea5ceb61ca
2 changed files with 0 additions and 18 deletions
@@ -175,11 +175,6 @@ public class BeanProperty implements ElPropertyValue {
final boolean excludedFromHistory;
/**
* Extra deployment parameters.
*/
final Map<String, String> extraAttributeMap;
/**
* Generator for insert or update timestamp etc.
*/
@@ -289,7 +284,6 @@ public class BeanProperty implements ElPropertyValue {
this.sqlFormulaSelect = InternString.intern(deploy.getSqlFormulaSelect());
this.formula = sqlFormulaSelect != null;
this.extraAttributeMap = deploy.getExtraAttributeMap();
this.dbType = deploy.getDbType();
this.scalarType = deploy.getScalarType();
this.lob = isLobType(dbType);
@@ -372,7 +366,6 @@ public class BeanProperty implements ElPropertyValue {
this.generatedProperty = source.getGeneratedProperty();
this.getter = source.getter;
this.setter = source.setter;
this.extraAttributeMap = source.extraAttributeMap;
this.dbType = source.getDbType();
this.scalarType = source.scalarType;
this.lob = isLobType(dbType);
@@ -23,8 +23,6 @@ import javax.persistence.Version;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.sql.Types;
import java.util.HashMap;
import java.util.Map;
/**
* Description of a property of a bean. Includes its deployment information such
@@ -157,11 +155,6 @@ public class DeployBeanProperty {
*/
private int dbType;
/**
* Extra deployment parameters.
*/
private final HashMap<String, String> extraAttributeMap = new HashMap<String, String>();
/**
* The method used to read the property.
*/
@@ -814,10 +807,6 @@ public class DeployBeanProperty {
this.embedded = embedded;
}
public Map<String, String> getExtraAttributeMap() {
return extraAttributeMap;
}
public String toString() {
return desc.getFullName() + "." + name;
}