Skip to content

Commit

Permalink
add setters for new params
Browse files Browse the repository at this point in the history
  • Loading branch information
mmk-1 committed Oct 31, 2023
1 parent 010bb5a commit e6737a5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ public void setUpdateMethodsChecksums(boolean updateChecksums) {
this.updateMethodsChecksums = updateChecksums;
}

public void setComputeAffectedTests(boolean computeAffectedTests) {
this.computeAffectedTests = computeAffectedTests;
}

public Set<String> getAffectedMethods() {
Set<String> affectedMethods = new HashSet<>();
affectedMethods.addAll(changedMethods);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@ public void setIncludeVariables(boolean includeVariables) {
this.includeVariables = includeVariables;
}

public void setComputeAffectedTests(boolean computeAffectedTests) {
this.computeAffectedTests = computeAffectedTests;
}

public Set<String> getAffectedMethods() {
Set<String> affectedMethods = new HashSet<>();
affectedMethods.addAll(changedMethods);
Expand Down

0 comments on commit e6737a5

Please sign in to comment.