Skip to content

Commit aa9289c

Browse files
committed
Use explicit cast since hash returns int
1 parent 77bcc25 commit aa9289c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/clj_commons/byte_streams/graph.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
(= type (.type ^Type x))))
3232
(hashCode [_]
3333
(bit-xor
34-
^long (hash wrapper)
35-
^long (hash type)))
34+
(long (hash wrapper))
35+
(long (hash type))))
3636
(toString [this]
3737
(pr-str (pprint-type this))))
3838

0 commit comments

Comments
 (0)