polishing

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2523 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Juergen Hoeller 2009-11-27 01:43:34 +00:00
parent e43d0331ce
commit 4e11a46208
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ public abstract class AbstractPropertyAccessor extends PropertyEditorRegistrySup
setPropertyValue(pv.getName(), pv.getValue()); setPropertyValue(pv.getName(), pv.getValue());
} }
public void setPropertyValues(Map map) throws BeansException { public void setPropertyValues(Map<?, ?> map) throws BeansException {
setPropertyValues(new MutablePropertyValues(map)); setPropertyValues(new MutablePropertyValues(map));
} }

View File

@ -148,7 +148,7 @@ public interface PropertyAccessor {
* all individual PropertyAccessExceptions. All other properties will have been * all individual PropertyAccessExceptions. All other properties will have been
* successfully updated. * successfully updated.
*/ */
void setPropertyValues(Map map) throws BeansException; void setPropertyValues(Map<?, ?> map) throws BeansException;
/** /**
* The preferred way to perform a batch update. * The preferred way to perform a batch update.