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