Fixed minor bug in binning clusterer.

git-svn-id: http://google-refine.googlecode.com/svn/trunk@261 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
David Huynh 2010-03-09 21:28:40 +00:00
parent 0c4b79c53a
commit 51b38a4eed

View File

@ -61,7 +61,7 @@ public class BinningClusterer extends Clusterer {
}
public boolean visit(Project project, int rowIndex, Row row, boolean contextual) {
Cell cell = row.cells.get(_colindex);
Cell cell = row.getCell(_colindex);
if (cell != null && cell.value != null) {
String v = cell.value.toString();
String s = (v instanceof String) ? ((String) v) : v.toString();