IdentityHashMap.java (get): Fix off-by-one error.
* java/util/IdentityHashMap.java (get): Fix off-by-one error. (put): Likewise. From-SVN: r45077
This commit is contained in:
parent
e9e4208a18
commit
71038fd576
@ -1,3 +1,8 @@
|
||||
2001-08-21 Jeff Sturm <jsturm@one-point.com>
|
||||
|
||||
* java/util/IdentityHashMap.java (get): Fix off-by-one error.
|
||||
(put): Likewise.
|
||||
|
||||
2001-08-20 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* java/awt/GridBagConstraints.java: Removed comment.
|
||||
|
@ -172,7 +172,7 @@ public class IdentityHashMap extends AbstractMap
|
||||
if (table[h] == emptyslot)
|
||||
return null;
|
||||
h += 2;
|
||||
if (h > table.length)
|
||||
if (h >= table.length)
|
||||
h = 0;
|
||||
if (h == save)
|
||||
return null;
|
||||
@ -257,7 +257,7 @@ public class IdentityHashMap extends AbstractMap
|
||||
break;
|
||||
}
|
||||
h += 2;
|
||||
if (h > table.length)
|
||||
if (h >= table.length)
|
||||
h = 0;
|
||||
if (h == save)
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user