bug: autoMatch flag wasn't actually used before

git-svn-id: http://google-refine.googlecode.com/svn/trunk@1627 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
David Huynh 2010-10-25 01:41:07 +00:00
parent d6b1455fb2
commit e601ad8d40

View File

@ -388,7 +388,7 @@ public class StandardReconConfig extends ReconConfig {
score
);
if (i == 0 && result.has("match") && result.getBoolean("match")) {
if (autoMatch && i == 0 && result.has("match") && result.getBoolean("match")) {
recon.match = candidate;
recon.matchRank = 0;
recon.judgment = Judgment.Matched;