Comment #2 on issue 759 by [email protected]: Use ASM 4.1
http://code.google.com/p/google-guice/issues/detail?id=759

The following CGLIB patch is a pre-req for upgrading to ASM 4.1:

Index: src/proxy/net/sf/cglib/core/DebuggingClassWriter.java
===================================================================
RCS file: /cvsroot/cglib/cglib/src/proxy/net/sf/cglib/core/DebuggingClassWriter.java,v
retrieving revision 1.15
diff -u -r1.15 DebuggingClassWriter.java
--- src/proxy/net/sf/cglib/core/DebuggingClassWriter.java 25 May 2012 22:56:16 -0000 1.15 +++ src/proxy/net/sf/cglib/core/DebuggingClassWriter.java 15 Jan 2013 21:08:02 -0000
@@ -46,7 +46,7 @@
     }

     public DebuggingClassWriter(int flags) {
-       super(flags, new ClassWriter(flags));
+       super(Opcodes.ASM4, new ClassWriter(flags));
     }

     public void visit(int version,

From http://sourceforge.net/p/cglib/bugs/39/

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
"google-guice-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-guice-dev.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to