We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d81072 commit 1412082Copy full SHA for 1412082
sdk/src/Core/Amazon.Runtime/Internal/Transform/JsonUnmarshallerContext.cs
@@ -270,12 +270,10 @@ public string ReadText(ref StreamingUtf8JsonReader reader)
270
text = reader.Reader.GetBoolean().ToString();
271
break;
272
case JsonTokenType.PropertyName:
273
- text = reader.Reader.GetString();
274
- break;
275
case JsonTokenType.String:
276
text = reader.Reader.GetString();
277
278
- // For numbers we grab the raw value b/ c we don't want to lose precision.
+ // For numbers we grab the raw value b/ c we don't want to lose precision.
279
case JsonTokenType.Number:
280
#if NETSTANDARD2_0 || NETFRAMEWORK
281
// overload which accepts a ReadOnlySpan<byte> is only available in netstandard2.1 and netcore2.1+
0 commit comments