Skip to content
Snippets Groups Projects

F grpc null values

Merged Timm Fitschen requested to merge f-grpc-null-values into dev
4 files
+ 84
8
Compare changes
  • Side-by-side
  • Inline

Files

+ 4
3
@@ -609,10 +609,11 @@ public abstract class Entity extends AbstractObservable implements EntityInterfa
@Override
public void parseValue() throws Message {
if (!this.isParsed) {
this.isParsed = true;
setValue(getDatatype().parseValue(getValue()));
if (this.isParsed) {
return;
}
this.isParsed = true;
if (getValue() != null) setValue(getDatatype().parseValue(getValue()));
}
@Override
Loading