diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-08-26 21:55:08 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-08-26 21:55:08 -0400 |
commit | 16161a214fddea19b908d7ca3dc0d39f81c259c8 (patch) | |
tree | e5cb86f44a675bf66dd2022644c9b4698d7e474b /src/SMAPI/Framework/ModLoading/Rewriters/MethodParentRewriter.cs | |
parent | fd6835555ccdfecc09d87aab29b9c5cec3820720 (diff) | |
download | SMAPI-16161a214fddea19b908d7ca3dc0d39f81c259c8.tar.gz SMAPI-16161a214fddea19b908d7ca3dc0d39f81c259c8.tar.bz2 SMAPI-16161a214fddea19b908d7ca3dc0d39f81c259c8.zip |
remove now-unused instruction replace callback
Diffstat (limited to 'src/SMAPI/Framework/ModLoading/Rewriters/MethodParentRewriter.cs')
-rw-r--r-- | src/SMAPI/Framework/ModLoading/Rewriters/MethodParentRewriter.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/ModLoading/Rewriters/MethodParentRewriter.cs b/src/SMAPI/Framework/ModLoading/Rewriters/MethodParentRewriter.cs index dc04478f..9933e2ca 100644 --- a/src/SMAPI/Framework/ModLoading/Rewriters/MethodParentRewriter.cs +++ b/src/SMAPI/Framework/ModLoading/Rewriters/MethodParentRewriter.cs @@ -41,7 +41,7 @@ namespace StardewModdingAPI.Framework.ModLoading.Rewriters : this(fromType.FullName, toType, nounPhrase) { } /// <inheritdoc /> - public override bool Handle(ModuleDefinition module, ILProcessor cil, Instruction instruction, Action<Instruction> replaceWith) + public override bool Handle(ModuleDefinition module, ILProcessor cil, Instruction instruction) { // get method ref MethodReference methodRef = RewriteHelper.AsMethodReference(instruction); |