Fixes Cell.toString failing on null value

This commit is contained in:
David Leoni 2014-11-27 18:45:01 +01:00
parent c15f8d1ffd
commit c3884c57f5

View File

@ -193,6 +193,10 @@ public class Cell implements HasFields, Jsonizable {
@Override
public String toString() {
return value.toString();
if (value != null){
return value.toString();
} else {
return "null";
}
}
}