Skip to content

Commit

Permalink
Phantom methods are skipped now as sanitizers during query execution.
Browse files Browse the repository at this point in the history
  • Loading branch information
arktt committed Nov 17, 2020
1 parent f95deab commit 034392d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ private Map<SootMethod, Body> setEmptySootBodies(List<Method> methods){

for (Method method : methods) {
SootMethod sootMethod = Utility.getSootMethod(method);
if (sootMethod != null) {
if (sootMethod != null && !sootMethod.isPhantom()) {
Body body = sootMethod.getActiveBody();
if (body != null) {
oldBodies.put(sootMethod, body);
Expand Down

0 comments on commit 034392d

Please sign in to comment.