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:
parent
36f09faa05
commit
df88ca6f49
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue