git-svn-id: https://serverad.studio-ml.local/svn/repo/projects/IntegryManagmentSystem/trunk@4828 7169d44f-50de-5945-979c-d5cbc11e8a2d
This commit is contained in:
@@ -1150,7 +1150,7 @@ public abstract class EntityBase implements Serializable, Cloneable, EntityInter
|
||||
fieldParent.setAccessible(true);
|
||||
Object obj = fieldParent.get(parent);
|
||||
|
||||
String mName = "set" + fieldName.substring(0, 1).toUpperCase() + fieldName.substring(1);
|
||||
String mName = "set" + field.getName().substring(0, 1).toUpperCase() + field.getName().substring(1);
|
||||
if(obj != null){
|
||||
Method m = ReflectionUtils.findMethod(getClass(), mName, obj.getClass());
|
||||
if(m != null)
|
||||
|
||||
Reference in New Issue
Block a user