mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
polishing
This commit is contained in:
+1
-1
@@ -50,7 +50,7 @@ public abstract class AbstractPropertyAccessor extends PropertyEditorRegistrySup
|
||||
setPropertyValue(pv.getName(), pv.getValue());
|
||||
}
|
||||
|
||||
public void setPropertyValues(Map map) throws BeansException {
|
||||
public void setPropertyValues(Map<?, ?> map) throws BeansException {
|
||||
setPropertyValues(new MutablePropertyValues(map));
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -148,7 +148,7 @@ public interface PropertyAccessor {
|
||||
* all individual PropertyAccessExceptions. All other properties will have been
|
||||
* successfully updated.
|
||||
*/
|
||||
void setPropertyValues(Map map) throws BeansException;
|
||||
void setPropertyValues(Map<?, ?> map) throws BeansException;
|
||||
|
||||
/**
|
||||
* The preferred way to perform a batch update.
|
||||
|
||||
Reference in New Issue
Block a user