Commit 119709b8 authored by Skylot's avatar Skylot

fix: stack overflow cause lamdba throw BootstrapMethodError in JDK 8

parent 1c914ff2
......@@ -157,7 +157,7 @@ public final class TypeUpdate {
updateInfo.rollbackUpdate(arg);
}
return result;
} catch (StackOverflowError overflow) {
} catch (StackOverflowError | BootstrapMethodError error) {
throw new JadxOverflowException("Type update terminated with stack overflow, arg: " + arg);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment