Skip to content

Commit 04105b6

Browse files
committed
Code cleanup.
1 parent 38c6692 commit 04105b6

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/MsgPack/Serialization/AbstractSerializers/SerializerBuilder`3.CommonConstructs.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -492,25 +492,25 @@ private TConstruct EmitSetMemberValueStatement( TContext context, TConstruct ins
492492
context,
493493
current,
494494
#if !NETFX_CORE
495-
traits.ElementType == typeof( DictionaryEntry )
495+
traits.ElementType == typeof( DictionaryEntry )
496496
? Metadata._DictionaryEntry.Key
497497
: traits.ElementType.GetProperty( "Key" )
498498
#else
499499
traits.ElementType.GetProperty( "Key" )
500-
#endif
501-
),
500+
#endif // !NETFX_CORE
501+
),
502502
valueType,
503503
this.EmitGetPropretyExpression(
504504
context,
505505
current,
506506
#if !NETFX_CORE
507-
traits.ElementType == typeof( DictionaryEntry )
507+
traits.ElementType == typeof( DictionaryEntry )
508508
? Metadata._DictionaryEntry.Value
509509
: traits.ElementType.GetProperty( "Value" )
510510
#else
511511
traits.ElementType.GetProperty( "Value" )
512-
#endif
513-
),
512+
#endif // !NETFX_CORE
513+
),
514514
false
515515
)
516516
// ReSharper restore ImplicitlyCapturedClosure

0 commit comments

Comments
 (0)