Minor bug: don't try to bind null cell value.
git-svn-id: http://google-refine.googlecode.com/svn/trunk@187 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
parent
7eaf4b098c
commit
87956be756
@ -28,7 +28,11 @@ public class ExpressionUtils {
|
||||
bindings.remove("value");
|
||||
} else {
|
||||
bindings.put("cell", cell);
|
||||
bindings.put("value", cell.value);
|
||||
if (cell.value == null) {
|
||||
bindings.remove("value");
|
||||
} else {
|
||||
bindings.put("value", cell.value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user