make MatchResult ctr public for hashmem plugin compatibility

This commit is contained in:
peter
2017-11-21 12:18:12 +01:00
parent c405067dde
commit 3b6a4370fa
@@ -22,7 +22,7 @@ public class MatchResult {
final int matchingDegree;
final boolean startMatch;
MatchResult(String elementName, int matchingDegree, boolean startMatch) {
public MatchResult(String elementName, int matchingDegree, boolean startMatch) {
this.elementName = elementName;
this.matchingDegree = matchingDegree;
this.startMatch = startMatch;