Skip to content

Commit

Permalink
Merge pull request #623 from zinggAI/obviousDupes
Browse files Browse the repository at this point in the history
obviousDupeString added in json
  • Loading branch information
sonalgoyal committed Jul 20, 2023
2 parents e71f617 + cd70174 commit b6a2ff1
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ public class Arguments implements Serializable {
float stopWordsCutoff = 0.1f;
long blockSize = 100L;
String column;
String obviousDupeString;
private static final String ENV_VAR_MARKER_START = "$";
private static final String ENV_VAR_MARKER_END = "$";
private static final String ESC = "\\";
Expand Down Expand Up @@ -676,6 +677,14 @@ public void setColumn(String column) {
this.column = column;
}

public String getObviousDupeString() {
return obviousDupeString;
}

public void setObviousDupeString(String obviousDupeString) {
this.obviousDupeString = obviousDupeString;
}

public long getBlockSize() {
return blockSize;
}
Expand Down

0 comments on commit b6a2ff1

Please sign in to comment.