dufoli commented on pull request #721:
URL: https://github.com/apache/cxf/pull/721#issuecomment-727215829


   hmm issue come from OpcodesImpl in ASMHelperImpl. Because before it was a 
static.
   
   ```
   try {
                   Class<?> cls = helper.getASMClass();
                   cls = ClassLoaderUtils.loadClass(cls.getPackage().getName() 
+ ".Opcodes", cls);
                   for (Field f1 : OpcodesProxy.class.getDeclaredFields()) {
                       Field f = cls.getDeclaredField(f1.getName());
                       ReflectionUtil.setAccessible(f1).set(null, 
ReflectionUtil.setAccessible(f).get(null));
                   }
               } catch (Throwable e) {
                   //ignore
               }
   ```
   I


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to