Reduce overuse of null-conditional operator
This commit is contained in:
parent
455d865948
commit
5e837b4eef
|
|
@ -88,14 +88,18 @@ namespace Microsoft.AspNet.Hosting
|
||||||
_configureServices(services);
|
_configureServices(services);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (PlatformServices.Default?.Application != null)
|
var defaultPlatformServices = PlatformServices.Default;
|
||||||
|
if (defaultPlatformServices != null)
|
||||||
{
|
{
|
||||||
services.TryAdd(ServiceDescriptor.Instance(PlatformServices.Default.Application));
|
if (defaultPlatformServices.Application != null)
|
||||||
}
|
{
|
||||||
|
services.TryAdd(ServiceDescriptor.Instance(defaultPlatformServices.Application));
|
||||||
|
}
|
||||||
|
|
||||||
if (PlatformServices.Default?.Runtime != null)
|
if (defaultPlatformServices.Runtime != null)
|
||||||
{
|
{
|
||||||
services.TryAdd(ServiceDescriptor.Instance(PlatformServices.Default.Runtime));
|
services.TryAdd(ServiceDescriptor.Instance(defaultPlatformServices.Runtime));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return services;
|
return services;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue