Skip to content

Commit

Permalink
Change visibility of isInstanceOfStatement to protected
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Leer committed May 21, 2020
1 parent 4b1c3b6 commit fb445ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ public Collection<State> computeNormalFlow(SootMethod method, Stmt curr, Val fac
return out;
}

private boolean isInstanceOfStatement(Stmt curr, Val fact) {
protected boolean isInstanceOfStatement(Stmt curr, Val fact) {
if (curr instanceof AssignStmt) {
AssignStmt as = (AssignStmt) curr;
if (as.getRightOp() instanceof InstanceOfExpr && query.getType() instanceof NullType) {
Expand Down

0 comments on commit fb445ff

Please sign in to comment.