diff --git a/MethodDecorator.Fody/MethodProcessor.cs b/MethodDecorator.Fody/MethodProcessor.cs index 2fc4051..91a637a 100644 --- a/MethodDecorator.Fody/MethodProcessor.cs +++ b/MethodDecorator.Fody/MethodProcessor.cs @@ -365,7 +365,7 @@ static IEnumerable GetCallInitInstructions( if (initMethodRef.Parameters.Count > 1) { // then push the instance reference onto the stack - if (memberDefinition.IsConstructor || memberDefinition.IsStatic) + if (memberDefinition.IsStatic) { list.Add(processor.Create(OpCodes.Ldnull)); }