Skip to content

Commit

Permalink
fix nil pun in genclass
Browse files Browse the repository at this point in the history
  • Loading branch information
richhickey committed Feb 24, 2009
1 parent 8b16bff commit 6427046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clj/clojure/genclass.clj
Expand Up @@ -161,7 +161,7 @@
ptypes (to-types pclasses)
rtype #^Type (totype rclass)
m (new Method mname rtype ptypes)
is-overload (overloads mname)
is-overload (contains? overloads mname)
gen (new GeneratorAdapter (+ (. Opcodes ACC_PUBLIC) (if as-static (. Opcodes ACC_STATIC) 0))
m nil nil cv)
found-label (. gen (newLabel))
Expand Down

0 comments on commit 6427046

Please sign in to comment.