Removed volatile flag from bridge method.

Actually, volatile flag is equal to bridge flag, which is already there.
This commit is contained in:
Evgeny Gerashchenko
2013-03-25 19:38:32 +04:00
parent 288dbe70c6
commit 56d2bb2639
@@ -175,7 +175,7 @@ public class ClosureCodegen extends GenerationStateAware {
}
MethodVisitor mv = cv.newMethod(
fun, ACC_PUBLIC | ACC_BRIDGE | ACC_VOLATILE, interfaceFunction.getName().getName(),
fun, ACC_PUBLIC | ACC_BRIDGE, interfaceFunction.getName().getName(),
bridge.getDescriptor(), null, new String[0]);
if (state.getClassBuilderMode() == ClassBuilderMode.STUBS) {
genStubCode(mv);