Skip to content

Commit d54cf0c

Browse files
committed
polishing
1 parent ac49011 commit d54cf0c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

org.springframework.beans/src/main/java/org/springframework/beans/AbstractPropertyAccessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public void setPropertyValue(PropertyValue pv) throws BeansException {
5050
setPropertyValue(pv.getName(), pv.getValue());
5151
}
5252

53-
public void setPropertyValues(Map map) throws BeansException {
53+
public void setPropertyValues(Map<?, ?> map) throws BeansException {
5454
setPropertyValues(new MutablePropertyValues(map));
5555
}
5656

org.springframework.beans/src/main/java/org/springframework/beans/PropertyAccessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public interface PropertyAccessor {
148148
* all individual PropertyAccessExceptions. All other properties will have been
149149
* successfully updated.
150150
*/
151-
void setPropertyValues(Map map) throws BeansException;
151+
void setPropertyValues(Map<?, ?> map) throws BeansException;
152152

153153
/**
154154
* The preferred way to perform a batch update.

0 commit comments

Comments
 (0)