1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

fix double increment

This commit is contained in:
Andrew Niefer 2004-07-16 13:45:21 +00:00
parent 04f9e243c8
commit 628114dbeb

View file

@ -106,7 +106,7 @@ public abstract class CharArrayMap {
}
// nope, add it in
if (++currEntry >= keyTable.length){
if (currEntry + 1 >= keyTable.length){
//need to recompute hash for this add, recurse
resize();
return add( buffer, start, len );