IdentityHashMap.java (put): Set new threshold correctly when resizing table.

* java/util/IdentityHashMap.java (put): Set new threshold correctly
	when resizing table.

From-SVN: r51751
This commit is contained in:
Bryce McKinlay 2002-04-02 13:55:14 +00:00 committed by Bryce McKinlay
parent 36f09faa05
commit df88ca6f49
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2002-04-02 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
* java/util/IdentityHashMap.java (put): Set new threshold correctly
when resizing table.
2002-04-01 Mark Wielaard <mark@klomp.org>
* java/util/BitSet.java (BitSet(int)): if nbits < 0 throw

View file

@ -490,7 +490,7 @@ public class IdentityHashMap extends AbstractMap
table = new Object[old.length * 2 + 2];
Arrays.fill(table, emptyslot);
size = 0;
threshold = table.length / 4 * 3;
threshold = (table.length / 2) / 4 * 3;
for (int i = old.length - 2; i >= 0; i -= 2)
{