git-svn-id: https://samskivert.googlecode.com/svn/trunk@1783 6335cc39-0255-0410-8fd6-9bcaacd3b74c

This commit is contained in:
ray
2006-02-06 22:02:43 +00:00
parent 3acf8d9e57
commit aed7a53e28
@@ -387,7 +387,7 @@ public class ArrayIntSet extends AbstractSet
{
try {
ArrayIntSet nset = (ArrayIntSet)super.clone();
nset._values = _values.clone();
nset._values = (int[]) _values.clone();
return nset;
} catch (CloneNotSupportedException cnse) {