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:
parent
0c4b79c53a
commit
51b38a4eed
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user