Skip to content

Commit

Permalink
delete unnecessary semicolons
Browse files Browse the repository at this point in the history
Reviewed By: itang00

Differential Revision: D49440607

fbshipit-source-id: eb1f5ca911475c8ad162d23adc5b94a164cce351
  • Loading branch information
Nikolai Tillmann authored and facebook-github-bot committed Sep 20, 2023
1 parent 7576159 commit 46d619b
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions libredex/CallGraph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,12 @@ CallSites SingleCalleeStrategy::get_callsites(const DexMethod* method) const {
auto callee = this->resolve_callee(method, insn);
if (callee == nullptr || is_definitely_virtual(callee)) {
return editable_cfg_adapter::LOOP_CONTINUE;
;
}
if (callee->is_concrete()) {
callsites.emplace_back(callee, insn);
}
}
return editable_cfg_adapter::LOOP_CONTINUE;
;
});
return callsites;
}
Expand Down Expand Up @@ -270,7 +268,6 @@ CallSites CompleteCallGraphStrategy::get_callsites(
}
}
return editable_cfg_adapter::LOOP_CONTINUE;
;
});
return callsites;
}
Expand Down Expand Up @@ -386,7 +383,6 @@ CallSites MultipleCalleeStrategy::get_callsites(const DexMethod* method) const {
callee = resolve_interface_virtual_callee(insn, method);
if (callee == nullptr) {
return editable_cfg_adapter::LOOP_CONTINUE;
;
}
}
if (is_definitely_virtual(callee)) {
Expand All @@ -410,7 +406,6 @@ CallSites MultipleCalleeStrategy::get_callsites(const DexMethod* method) const {
}
}
return editable_cfg_adapter::LOOP_CONTINUE;
;
});
return callsites;
}
Expand Down

0 comments on commit 46d619b

Please sign in to comment.