AbstractMap.java: Re-merged with Classpath.
* java/util/AbstractMap.java: Re-merged with Classpath. * java/util/IdentityHashMap.java: Re-merged with Classpath. From-SVN: r45391
This commit is contained in:
parent
a1f4e5ed0a
commit
ef671f4175
3 changed files with 25 additions and 3 deletions
|
@ -47,6 +47,14 @@ public abstract class AbstractMap implements Map
|
|||
entrySet().clear();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a shallow copy of this Map, no keys or values are copied.
|
||||
*/
|
||||
protected Object clone () throws CloneNotSupportedException
|
||||
{
|
||||
return super.clone ();
|
||||
}
|
||||
|
||||
public boolean containsKey(Object key)
|
||||
{
|
||||
Object k;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue