summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/Events/ManagedEventHandler.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI/Framework/Events/ManagedEventHandler.cs')
-rw-r--r--src/SMAPI/Framework/Events/ManagedEventHandler.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/SMAPI/Framework/Events/ManagedEventHandler.cs b/src/SMAPI/Framework/Events/ManagedEventHandler.cs
index b32a2a22..28e88be0 100644
--- a/src/SMAPI/Framework/Events/ManagedEventHandler.cs
+++ b/src/SMAPI/Framework/Events/ManagedEventHandler.cs
@@ -39,9 +39,7 @@ namespace StardewModdingAPI.Framework.Events
this.SourceMod = sourceMod;
}
- /// <summary>Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.</summary>
- /// <param name="obj">An object to compare with this instance.</param>
- /// <exception cref="T:System.ArgumentException"><paramref name="obj" /> is not the same type as this instance.</exception>
+ /// <inheritdoc />
public int CompareTo(object obj)
{
if (!(obj is ManagedEventHandler<TEventArgs> other))