Applied patch submitted by Richard Wan that containsKey() took a String by mistake
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@130507 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e91adf1191
commit
51a5b46632
|
@ -147,7 +147,7 @@ public class BeanMap extends AbstractMap {
|
|||
}
|
||||
}
|
||||
|
||||
public boolean containsKey(String name) {
|
||||
public boolean containsKey(Object name) {
|
||||
Method method = getReadMethod( name );
|
||||
return method != null;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue