Details
-
Task
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
-
Unknown
Description
asmhelper works only with asm itself but not shades cause of visitFrame.
org.apache.cxf.common.util.ASMHelper#tryClass needs to change getMethod call from
cls.getMethod("visitFrame", Integer.TYPE, String.class, String.class, String.class);
to
cls.getMethod("visitFrame", Integer.TYPE, Integer.TYPE, Object[].class, Integer.TYPE, Object[].class);
see org.apache.cxf.common.util.ASMHelper.MethodVisitor#visitFrame
PS: xbean asm4 shade can then be removed since not compatible