When debugging class loading issues I noticed that clojure tries to load many non-existing classes. For example this__5587__auto__, gf__x__8266 , f__5717__auto__.
It happens on startup, in static init block of RT.java. Are those type hints generated by some macro ? protected Class<?> findClass(String name) throws ClassNotFoundException{ Reference<Class> cr = classCache.get(name); if(cr != null) { Class c = cr.get(); if(c != null) return c; else classCache.remove(name, cr); } try { return super.findClass(name); } catch (ClassNotFoundException e) { log.log(Level.SEVERE,"FAILED to load " + name); throw e; } } -- 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