diff options
Diffstat (limited to 'src/SMAPI/IReflectedMethod.cs')
-rw-r--r-- | src/SMAPI/IReflectedMethod.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/SMAPI/IReflectedMethod.cs b/src/SMAPI/IReflectedMethod.cs index 646e7301..04636b84 100644 --- a/src/SMAPI/IReflectedMethod.cs +++ b/src/SMAPI/IReflectedMethod.cs @@ -1,4 +1,4 @@ -using System.Reflection; +using System.Reflection; namespace StardewModdingAPI { @@ -18,10 +18,10 @@ namespace StardewModdingAPI /// <summary>Invoke the method.</summary> /// <typeparam name="TValue">The return type.</typeparam> /// <param name="arguments">The method arguments to pass in.</param> - TValue Invoke<TValue>(params object[] arguments); + TValue Invoke<TValue>(params object?[] arguments); /// <summary>Invoke the method.</summary> /// <param name="arguments">The method arguments to pass in.</param> - void Invoke(params object[] arguments); + void Invoke(params object?[] arguments); } } |