Skip to content

Commit 16b277f

Browse files
committed
Remove useless check for an unfilled entry
1 parent 1a2c72b commit 16b277f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

srfi/250/hash-tables.scm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,7 @@
126126
(let ((found-key
127127
(vector-ref (hash-table-keys-vector ht) entry-idx)))
128128
(if (and (not (deletion? found-key))
129-
(or (unfilled? found-key)
130-
(hash-table-same? ht key found-key)))
129+
(hash-table-same? ht key found-key))
131130
bucket
132131
(loop (+ hash 1))))
133132
bucket)))))

0 commit comments

Comments
 (0)