On Monday, March 31, 2014 4:34:17 PM UTC-5, zcaudate wrote: > > I know this is a silly example but I am curious to know what is happening > with the proxy method. > > I have set up two calls to proxy: > > 1. > (def cp > (proxy [java.util.AbstractMap clojure.asm.ClassVisitor] [])) > > 2. > (def cp > (proxy [clojure.asm.ClassVisitor java.util.AbstractMap] [])) > > > The first call is fine.... and it return cp. The second call gives me an > exception. >
You cross-posted to Stack Overflow Stack Overflow<http://stackoverflow.com/q/22779892/1756702>. Copy of my answer there: Neither will work in Clojure 1.6.0. In 1.5, `clojure.asm.ClassVisitor` was an interface instead of an abstract class. Proxy expects at most one class followed by optional interfaces. As `java.util.AbstractMap` is an abstract class, it cannot appear second in the list of class-and-interfaces. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.