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:
Jeff Sturm 2001-08-21 14:24:48 +00:00 committed by Jeff Sturm
parent e9e4208a18
commit 71038fd576
2 changed files with 7 additions and 2 deletions

View File

@ -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.

View File

@ -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;