Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit cbfbd0d

Browse files
committed
fix whitespace
1 parent 68c7dc2 commit cbfbd0d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/ServiceStack.Text/TypeFields.cs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ public override SetPropertyDelegateRef GetPublicSetterRef(string name)
4343
return GenericPublicSetters.TryGetValue(name, out SetPropertyDelegateRefGeneric<T> fn)
4444
? delegate (ref object instance, object arg)
4545
{
46-
var valueInstance = (T)instance;
47-
fn(ref valueInstance, arg);
48-
instance = valueInstance;
46+
var valueInstance = (T)instance;
47+
fn(ref valueInstance, arg);
48+
instance = valueInstance;
4949
}
5050
: (SetPropertyDelegateRef)null;
5151
}
@@ -68,7 +68,8 @@ public static TypeFields Get(Type type)
6868
do
6969
{
7070
snapshot = CacheMap;
71-
newCache = new Dictionary<Type, TypeFields>(CacheMap) {
71+
newCache = new Dictionary<Type, TypeFields>(CacheMap)
72+
{
7273
[type] = instance
7374
};
7475
} while (!ReferenceEquals(

0 commit comments

Comments
 (0)