File tree 2 files changed +3
-3
lines changed
Mvc.Abstractions/src/Abstractions 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,6 @@ public ActionDescriptor()
76
76
/// </summary>
77
77
public IDictionary < object , object > Properties { get ; set ; } = default ! ;
78
78
79
- internal IFilterMetadata [ ] ? CachedResuableFilters { get ; set ; }
79
+ internal IFilterMetadata [ ] ? CachedReusableFilters { get ; set ; }
80
80
}
81
81
}
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ public static FilterFactoryResult GetAllFilters(
61
61
{
62
62
// If we know we can safely cache all filters and only the default filter provider is registered, we can
63
63
// probably re-use filters between requests.
64
- actionDescriptor . CachedResuableFilters = filters ;
64
+ actionDescriptor . CachedReusableFilters = filters ;
65
65
}
66
66
67
67
return new FilterFactoryResult ( staticFilterItems , filters ) ;
@@ -87,7 +87,7 @@ public static IFilterMetadata[] CreateUncachedFilters(
87
87
throw new ArgumentNullException ( nameof ( cachedFilterItems ) ) ;
88
88
}
89
89
90
- if ( actionContext . ActionDescriptor . CachedResuableFilters is { } cached )
90
+ if ( actionContext . ActionDescriptor . CachedReusableFilters is { } cached )
91
91
{
92
92
return cached ;
93
93
}
You can’t perform that action at this time.
0 commit comments