diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-08-25 22:59:08 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-08-25 22:59:08 -0400 |
commit | ec4b81819aeaaeba5f5f3edf28e72b0e6f0430c4 (patch) | |
tree | 59201898b478b76e0189d41ff8020ebdcc3a3d89 /src/SMAPI/Framework/ModLoading/Rewriters/MethodParentRewriter.cs | |
parent | abfe40bf691e4d384d444bf6f001de8d959b12bb (diff) | |
download | SMAPI-ec4b81819aeaaeba5f5f3edf28e72b0e6f0430c4.tar.gz SMAPI-ec4b81819aeaaeba5f5f3edf28e72b0e6f0430c4.tar.bz2 SMAPI-ec4b81819aeaaeba5f5f3edf28e72b0e6f0430c4.zip |
use inheritdoc in rewriters
Diffstat (limited to 'src/SMAPI/Framework/ModLoading/Rewriters/MethodParentRewriter.cs')
-rw-r--r-- | src/SMAPI/Framework/ModLoading/Rewriters/MethodParentRewriter.cs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/SMAPI/Framework/ModLoading/Rewriters/MethodParentRewriter.cs b/src/SMAPI/Framework/ModLoading/Rewriters/MethodParentRewriter.cs index b8e53f40..dc04478f 100644 --- a/src/SMAPI/Framework/ModLoading/Rewriters/MethodParentRewriter.cs +++ b/src/SMAPI/Framework/ModLoading/Rewriters/MethodParentRewriter.cs @@ -40,12 +40,7 @@ namespace StardewModdingAPI.Framework.ModLoading.Rewriters public MethodParentRewriter(Type fromType, Type toType, string nounPhrase = null) : this(fromType.FullName, toType, nounPhrase) { } - /// <summary>Rewrite a CIL instruction reference if needed.</summary> - /// <param name="module">The assembly module containing the instruction.</param> - /// <param name="cil">The CIL processor.</param> - /// <param name="instruction">The CIL instruction to handle.</param> - /// <param name="replaceWith">Replaces the CIL instruction with a new one.</param> - /// <returns>Returns whether the instruction was changed.</returns> + /// <inheritdoc /> public override bool Handle(ModuleDefinition module, ILProcessor cil, Instruction instruction, Action<Instruction> replaceWith) { // get method ref |