Fixes Cell.toString failing on null value
This commit is contained in:
parent
c15f8d1ffd
commit
c3884c57f5
@ -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";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user