File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -16,9 +16,13 @@ internal static class FieldInterceptorProxyBuilder
16
16
private static readonly PropertyInfo AccessorTypeFieldInterceptorProperty =
17
17
FieldInterceptorAccessorType . GetProperty ( nameof ( IFieldInterceptorAccessor . FieldInterceptor ) ) ;
18
18
private static readonly System . Type FieldInterceptorType = typeof ( IFieldInterceptor ) ;
19
+ // 6.0 TODO: Remove
19
20
private static readonly System . Type FieldInterceptorExtensionsType = typeof ( FieldInterceptorExtensions ) ;
21
+ #pragma warning disable 618
20
22
private static readonly MethodInfo FieldInterceptorInterceptMethod = FieldInterceptorType . GetMethod ( nameof ( IFieldInterceptor . Intercept ) ) ;
23
+ #pragma warning restore 618
21
24
private static readonly MethodInfo FieldInterceptorMarkDirtyMethod = FieldInterceptorType . GetMethod ( nameof ( IFieldInterceptor . MarkDirty ) ) ;
25
+ // 6.0 TODO: Remove and replace usages with FieldInterceptorInterceptMethod
22
26
private static readonly MethodInfo FieldInterceptorInterceptExtensionMethod = FieldInterceptorExtensionsType . GetMethod ( nameof ( FieldInterceptorExtensions . Intercept ) ) ;
23
27
private static readonly System . Type AbstractFieldInterceptorType = typeof ( AbstractFieldInterceptor ) ;
24
28
private static readonly FieldInfo AbstractFieldInterceptorInvokeImplementationField =
You can’t perform that action at this time.
0 commit comments