We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40a17a2 commit 1d0eb51Copy full SHA for 1d0eb51
src/main/java/com/intuit/fuzzymatcher/domain/Element.java
@@ -180,6 +180,11 @@ public Builder setVariance(String variance) {
180
return this;
181
}
182
183
+ public Builder setValue(Object value) {
184
+ this.value = value;
185
+ return this;
186
+ }
187
+
188
public Builder setValue(String value) {
189
this.value = value;
190
src/main/java/com/intuit/fuzzymatcher/domain/Match.java
@@ -46,10 +46,6 @@ public T getMatchedWith() {
46
return matchedWith;
47
48
49
- public void setMatchedWith(T matchedWith) {
50
- this.matchedWith = matchedWith;
51
- }
52
-
53
public double getResult() {
54
return this.score.getResult();
55
0 commit comments