After converting some .class files with retrolambda, the resulting .class files seem to have some problems. If I run javap -verbose OutputClass.class I see the following type of output at the end of some (but not all) method definitions.
Error: java.lang.reflect.InvocationTargetException
StackMap: length = 0x3
00 01 0F
I can't seem to identify anything special about the methods where this is happening. Any idea what would cause this?
After converting some .class files with retrolambda, the resulting .class files seem to have some problems. If I run
javap -verbose OutputClass.classI see the following type of output at the end of some (but not all) method definitions.I can't seem to identify anything special about the methods where this is happening. Any idea what would cause this?