Skip to content

Commit 70a33f2

Browse files
committed
remove two more type hints we no longer need
1 parent 88e2470 commit 70a33f2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/cljs/cljs/core.cljs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -990,7 +990,7 @@
990990
[o]
991991
(cond
992992
(implements? IHash o)
993-
(bit-xor (-hash ^not-native o) 0)
993+
(bit-xor (-hash o) 0)
994994

995995
(number? o)
996996
(if (js/isFinite o)
@@ -3198,7 +3198,7 @@ reduces them without incurring seq initialization"
31983198
(.push arr (-first xs))
31993199
(recur (-next xs)))
32003200
arr))))]
3201-
(loop [i (alength arr) ^not-native r ()]
3201+
(loop [i (alength arr) r ()]
32023202
(if (> i 0)
32033203
(recur (dec i) (-conj r (aget arr (dec i))))
32043204
r))))

0 commit comments

Comments
 (0)