From 6ad196effef52cdbca0b04db26302820e757012b Mon Sep 17 00:00:00 2001 From: Alistair Evans Date: Sat, 28 Jan 2023 10:35:45 +0000 Subject: [PATCH] Fix indentation. --- src/Autofac/Core/Activators/Reflection/InjectableProperty.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Autofac/Core/Activators/Reflection/InjectableProperty.cs b/src/Autofac/Core/Activators/Reflection/InjectableProperty.cs index 729f31eb6..f439f4cd5 100644 --- a/src/Autofac/Core/Activators/Reflection/InjectableProperty.cs +++ b/src/Autofac/Core/Activators/Reflection/InjectableProperty.cs @@ -34,7 +34,7 @@ public InjectableProperty(PropertyInfo prop) _setterParameter = _setter.GetParameters()[0]; #if NET7_0_OR_GREATER - IsRequired = prop.GetCustomAttribute() is not null; + IsRequired = prop.GetCustomAttribute() is not null; #endif }