/[classpath]/classpath/java/util/IdentityHashMap.java
ViewVC logotype

Diff of /classpath/java/util/IdentityHashMap.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.10 by mark, Tue Jan 22 22:27:01 2002 UTC revision 1.11 by bryce, Tue Apr 2 13:58:10 2002 UTC
# Line 490  public class IdentityHashMap extends Abs Line 490  public class IdentityHashMap extends Abs
490          table = new Object[old.length * 2 + 2];          table = new Object[old.length * 2 + 2];
491          Arrays.fill(table, emptyslot);          Arrays.fill(table, emptyslot);
492          size = 0;          size = 0;
493          threshold = table.length / 4 * 3;          threshold = (table.length / 2) / 4 * 3;
494    
495          for (int i = old.length - 2; i >= 0; i -= 2)          for (int i = old.length - 2; i >= 0; i -= 2)
496            {            {

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26