Rollback of "Fail when serialize inf and nan for Value.number_value in json format"

PiperOrigin-RevId: 500150564
pull/13171/head
Jie Luo 2 years ago committed by Copybara-Service
parent e6c38af972
commit 955a57f80f
  1. 6
      upb/json/encode.c

@ -533,12 +533,6 @@ static void jsonenc_value(jsonenc* e, const upb_Message* msg,
jsonenc_putstr(e, "null");
break;
case 2:
if (upb_JsonEncode_HandleSpecialDoubles(e, val.double_val)) {
jsonenc_err(
e,
"google.protobuf.Value cannot encode double values for "
"infinity or nan, because they would be parsed as a string");
}
upb_JsonEncode_Double(e, val.double_val);
break;
case 3:

Loading…
Cancel
Save