Skip to content

Commit

Permalink
fix(spgroup#31): pr adjuts
Browse files Browse the repository at this point in the history
  • Loading branch information
barbosamaatheus committed Oct 6, 2021
1 parent 4e5c5f6 commit ce62ba7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/main/java/br/unb/cic/analysis/model/Conflict.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public class Conflict {
protected String sinkMethodName;
protected Integer sinkLineNumber;
protected Unit sinkUnit;
// used when using stack trace of the conflict.
protected List<TraversedLine> sinkTraversedLine;


Expand Down
6 changes: 3 additions & 3 deletions src/main/java/br/unb/cic/analysis/model/TraversedLine.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
import soot.SootMethod;

public class TraversedLine {
protected SootClass sootClass;
protected SootMethod sootMethod;
protected Integer lineNumber;
private SootClass sootClass;
private SootMethod sootMethod;
private Integer lineNumber;

public TraversedLine(SootClass sootClass, SootMethod sootMethod, Integer lineNumber) {
this.sootClass = sootClass;
Expand Down

0 comments on commit ce62ba7

Please sign in to comment.