File tree 1 file changed +4
-6
lines changed
1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -7828,15 +7828,13 @@ reduces them without incurring seq initialization"
7828
7828
7829
7829
(inode-lookup [inode shift hash key not-found]
7830
7830
(let [idx (hash-collision-node-find-index arr cnt key)]
7831
- (cond (< idx 0 ) not-found
7832
- (key-test key (aget arr idx)) (aget arr (inc idx))
7833
- :else not-found)))
7831
+ (cond (< idx 0 ) not-found
7832
+ :else (aget arr (inc idx)))))
7834
7833
7835
7834
(inode-find [inode shift hash key not-found]
7836
7835
(let [idx (hash-collision-node-find-index arr cnt key)]
7837
- (cond (< idx 0 ) not-found
7838
- (key-test key (aget arr idx)) (MapEntry. (aget arr idx) (aget arr (inc idx)) nil )
7839
- :else not-found)))
7836
+ (cond (< idx 0 ) not-found
7837
+ :else (MapEntry. (aget arr idx) (aget arr (inc idx)) nil ))))
7840
7838
7841
7839
(inode-seq [inode]
7842
7840
(create-inode-seq arr))
You can’t perform that action at this time.
0 commit comments