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

Commit 5e03137

Browse files
committed
Remove unnecessay type param in StaticAccessors
1 parent 9e60f90 commit 5e03137

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ServiceStack.Text/Reflection/StaticAccessors.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public static Func<object, object> GetFastGetter(this Type type, string propName
3636
if (pi == null)
3737
return null;
3838

39-
fn = GetValueGetter(pi, type);
39+
fn = GetValueGetter(pi);
4040

4141
Dictionary<string, Func<object, object>> snapshot, newCache;
4242
do
@@ -63,7 +63,7 @@ public static Action<object, object> GetFastSetter(this Type type, string propNa
6363
if (pi == null)
6464
return null;
6565

66-
fn = GetValueSetter(pi, type);
66+
fn = GetValueSetter(pi);
6767

6868
Dictionary<string, Action<object, object>> snapshot, newCache;
6969
do

0 commit comments

Comments
 (0)