Skip to content

Commit

Permalink
#311 - fix review notes
Browse files Browse the repository at this point in the history
  • Loading branch information
yzerk committed Jan 4, 2023
1 parent 5e0fe7e commit 19c7c23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@ protected boolean isAnsi() {

@Override
protected void updateParams(ParamsWithFiles params) {
params.setExportOptions(skipTranslatedOnly, skipUntranslatedFiles, keepArchive, exportApprovedOnly);
params.setExportOptions(skipTranslatedOnly, skipUntranslatedFiles, exportApprovedOnly);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class ParamsWithFiles extends ProjectParams {

private List<String> excludedTargetLanguages;

public void setExportOptions(Boolean skipTranslatedOnly, Boolean skipUntranslatedFiles, Boolean keepArchive, Boolean exportApprovedOnly) {
public void setExportOptions(Boolean skipTranslatedOnly, Boolean skipUntranslatedFiles, Boolean exportApprovedOnly) {
this.skipTranslatedOnly = skipTranslatedOnly;
this.skipUntranslatedFiles = skipUntranslatedFiles;
this.exportApprovedOnly = exportApprovedOnly;
Expand Down

0 comments on commit 19c7c23

Please sign in to comment.