Commit ef671f41 by Tom Tromey Committed by Tom Tromey

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
parent a1f4e5ed
2001-09-04 Tom Tromey <tromey@redhat.com>
* java/util/AbstractMap.java: Re-merged with Classpath.
* java/util/IdentityHashMap.java: Re-merged with Classpath.
* java/text/SimpleDateFormat.java: Re-merged with Classpath.
* gnu/gcj/text/LocaleData.java, gnu/gcj/text/LocaleData_en.java,
gnu/gcj/text/LocaleData_en_US.java: Removed.
......
......@@ -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;
......
......@@ -83,11 +83,22 @@ public class IdentityHashMap extends AbstractMap
size = 0;
}
/**
* Creates a shallow copy where keys and values are not cloned.
*/
public Object clone ()
{
IdentityHashMap copy = (IdentityHashMap) super.clone ();
copy.table = (Object[]) table.clone ();
return copy;
try
{
IdentityHashMap copy = (IdentityHashMap) super.clone ();
copy.table = (Object[]) table.clone ();
return copy;
}
catch (CloneNotSupportedException e)
{
// Can't happen.
return null;
}
}
public boolean containsKey (Object key)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment