File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
org.springframework.beans/src/main/java/org/springframework/beans Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public void setPropertyValue(PropertyValue pv) throws BeansException {
50
50
setPropertyValue (pv .getName (), pv .getValue ());
51
51
}
52
52
53
- public void setPropertyValues (Map map ) throws BeansException {
53
+ public void setPropertyValues (Map <?, ?> map ) throws BeansException {
54
54
setPropertyValues (new MutablePropertyValues (map ));
55
55
}
56
56
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ public interface PropertyAccessor {
148
148
* all individual PropertyAccessExceptions. All other properties will have been
149
149
* successfully updated.
150
150
*/
151
- void setPropertyValues (Map map ) throws BeansException ;
151
+ void setPropertyValues (Map <?, ?> map ) throws BeansException ;
152
152
153
153
/**
154
154
* The preferred way to perform a batch update.
You can’t perform that action at this time.
0 commit comments