Minor bug.
git-svn-id: http://google-refine.googlecode.com/svn/trunk@294 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
parent
3495c417cd
commit
e35c4c3b94
@ -72,7 +72,7 @@ public class ReconMatchBestCandidatesOperation extends EngineDependentMassCellOp
|
|||||||
public boolean visit(Project project, int rowIndex, Row row, boolean includeContextual, boolean includeDependent) {
|
public boolean visit(Project project, int rowIndex, Row row, boolean includeContextual, boolean includeDependent) {
|
||||||
if (cellIndex < row.cells.size()) {
|
if (cellIndex < row.cells.size()) {
|
||||||
Cell cell = row.cells.get(cellIndex);
|
Cell cell = row.cells.get(cellIndex);
|
||||||
if (cell.recon != null) {
|
if (cell != null && cell.recon != null) {
|
||||||
ReconCandidate candidate = cell.recon.getBestCandidate();
|
ReconCandidate candidate = cell.recon.getBestCandidate();
|
||||||
if (candidate != null) {
|
if (candidate != null) {
|
||||||
Cell newCell = new Cell(
|
Cell newCell = new Cell(
|
||||||
|
Loading…
Reference in New Issue
Block a user