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:
James Strachan 2001-11-02 14:44:35 +00:00
parent e91adf1191
commit 51a5b46632
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}