Skip to content

Commit 1412082

Browse files
committed
parity with merge pr
1 parent 6d81072 commit 1412082

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

sdk/src/Core/Amazon.Runtime/Internal/Transform/JsonUnmarshallerContext.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -270,12 +270,10 @@ public string ReadText(ref StreamingUtf8JsonReader reader)
270270
text = reader.Reader.GetBoolean().ToString();
271271
break;
272272
case JsonTokenType.PropertyName:
273-
text = reader.Reader.GetString();
274-
break;
275273
case JsonTokenType.String:
276274
text = reader.Reader.GetString();
277275
break;
278-
// For numbers we grab the raw value b/ c we don't want to lose precision.
276+
// For numbers we grab the raw value b/ c we don't want to lose precision.
279277
case JsonTokenType.Number:
280278
#if NETSTANDARD2_0 || NETFRAMEWORK
281279
// overload which accepts a ReadOnlySpan<byte> is only available in netstandard2.1 and netcore2.1+

0 commit comments

Comments
 (0)