Skip to content

Commit f183a0c

Browse files
author
Nathan Marz
committed
fix reflection bug
1 parent f4d59e6 commit f183a0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/clj/backtype/storm/util.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,7 @@
781781
(defmacro fast-map-iter [[bind amap] & body]
782782
`(let [iter# (map-iter ~amap)]
783783
(while (iter-has-next? iter#)
784-
(let [entry# (.next iter#)
784+
(let [entry# (iter-next iter#)
785785
~bind (convert-entry entry#)]
786786
~@body
787787
))))

0 commit comments

Comments
 (0)