We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b79826 commit 4c4058dCopy full SHA for 4c4058d
src/soot/toolkits/exceptions/UnitThrowAnalysis.java
@@ -258,7 +258,8 @@ public void caseDynamicInvokeInst(DynamicInvokeInst i) {
258
result = result.add(mgr.RESOLVE_METHOD_ERRORS);
259
result = result.add(mgr.NULL_POINTER_EXCEPTION);
260
result = result.add(mgr.INITIALIZATION_ERRORS);
261
- result = result.add(mightThrow(i.getMethod()));
+ //might throw anything
262
+ result = result.add(ThrowableSet.Manager.v().ALL_THROWABLES);
263
}
264
265
public void caseStaticInvokeInst(StaticInvokeInst i) {
0 commit comments