No effective change - code cleanup - removed unused param

This commit is contained in:
Robin Bygrave
2015-08-01 19:47:05 +12:00
parent e19fe5ccd3
commit 9769e4b574
3 changed files with 6 additions and 6 deletions
@@ -1288,8 +1288,8 @@ public class BeanDescriptorManager implements BeanDescriptorMap {
} else {
final int propertyIndex = pos;
prop.setPropertyIndex(propertyIndex);
prop.setGetter(beanReflect.getGetter(propName, propertyIndex));
prop.setSetter(beanReflect.getSetter(propName, propertyIndex));
prop.setGetter(beanReflect.getGetter(propertyIndex));
prop.setSetter(beanReflect.getSetter(propertyIndex));
}
}
}
@@ -17,10 +17,10 @@ public interface BeanPropertyInfo {
/**
* Return the getter for a given bean property.
*/
BeanPropertyGetter getGetter(String name, int position);
BeanPropertyGetter getGetter(int position);
/**
* Return the setter for a given bean property.
*/
BeanPropertySetter getSetter(String name, int position);
BeanPropertySetter getSetter(int position);
}
@@ -47,11 +47,11 @@ public final class EnhanceBeanPropertyInfo implements BeanPropertyInfo {
}
}
public BeanPropertyGetter getGetter(String name, int position) {
public BeanPropertyGetter getGetter(int position) {
return new Getter(position);
}
public BeanPropertySetter getSetter(String name, int position) {
public BeanPropertySetter getSetter(int position) {
return new Setter(position);
}