Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
JurenIvan committed Jan 31, 2024
1 parent be4c3bc commit 5de857f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ void put(int hash, byte[] key, int len, int temperature) {

int i = index;
while (hashTable[i] != null) {
if (keyIsEqual(key, hashTable[index].city, len)) { //handling hash collisions
if (keyIsEqual(key, hashTable[index].city, len)) { // handling hash collisions
hashTable[i].add(temperature);
return;
}
Expand Down

0 comments on commit 5de857f

Please sign in to comment.