Skip to content

Commit 977284e

Browse files
author
dnolen
committed
CLJS-2092: Redundant call to equiv-map in PAM.-equiv
1 parent aa6ecdf commit 977284e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/cljs/cljs/core.cljs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6367,7 +6367,7 @@ reduces them without incurring seq initialization"
63676367

63686368
IEquiv
63696369
(-equiv [coll other]
6370-
(if (and (implements? IMap other) (not (record? other)))
6370+
(if (and (map? other) (not (record? other)))
63716371
(let [alen (alength arr)
63726372
^not-native other other]
63736373
(if (== cnt (-count other))
@@ -6381,7 +6381,7 @@ reduces them without incurring seq initialization"
63816381
false))
63826382
true))
63836383
false))
6384-
(equiv-map coll other)))
6384+
false))
63856385

63866386
IHash
63876387
(-hash [coll] (caching-hash coll hash-unordered-coll __hash))

0 commit comments

Comments
 (0)