Skip to content

Commit

Permalink
fixed typo with getBackDependents method
Browse files Browse the repository at this point in the history
  • Loading branch information
jackmuva committed Oct 14, 2024
1 parent 9fde961 commit 97e5846
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/soot/toolkits/graph/pdg/PDGNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public List<PDGNode> getDependents() {
return this.m_dependents;
}

public List<PDGNode> getBackDependets() {
public List<PDGNode> getBackDependents() {
return this.m_backDependents;
}

Expand Down

0 comments on commit 97e5846

Please sign in to comment.