File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/Http/Http/src/Internal Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -28,16 +28,16 @@ public DefaultHttpRequest(HttpContext context)
2828 Initialize ( context ) ;
2929 }
3030
31- public virtual void Initialize ( HttpContext context )
31+ public void Initialize ( HttpContext context )
3232 {
3333 _context = context ;
3434 _features = new FeatureReferences < FeatureInterfaces > ( context . Features ) ;
3535 }
3636
37- public virtual void Uninitialize ( )
37+ public void Uninitialize ( )
3838 {
3939 _context = null ;
40- _features = default ( FeatureReferences < FeatureInterfaces > ) ;
40+ _features = default ;
4141 }
4242
4343 public override HttpContext HttpContext => _context ;
@@ -171,4 +171,4 @@ struct FeatureInterfaces
171171 public IRouteValuesFeature RouteValues ;
172172 }
173173 }
174- }
174+ }
You can’t perform that action at this time.
0 commit comments