diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-04-13 19:00:24 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-04-13 19:00:24 -0400 |
commit | 6e9e8aef1ef97e1a4ef4410ce300cb1c47eca986 (patch) | |
tree | 6aa94e6df974362b4ea1581e83cd33d9ffc40639 /src/SMAPI/Framework/Commands | |
parent | 40aebb74c65e0c7300b5f4fcb066f3fd2b2a5fdd (diff) | |
download | SMAPI-6e9e8aef1ef97e1a4ef4410ce300cb1c47eca986.tar.gz SMAPI-6e9e8aef1ef97e1a4ef4410ce300cb1c47eca986.tar.bz2 SMAPI-6e9e8aef1ef97e1a4ef4410ce300cb1c47eca986.zip |
enable nullable annotations in SMAPI where no changes are needed (#837)
Diffstat (limited to 'src/SMAPI/Framework/Commands')
-rw-r--r-- | src/SMAPI/Framework/Commands/IInternalCommand.cs | 2 | ||||
-rw-r--r-- | src/SMAPI/Framework/Commands/ReloadI18nCommand.cs | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/SMAPI/Framework/Commands/IInternalCommand.cs b/src/SMAPI/Framework/Commands/IInternalCommand.cs index 32e3e9f1..abf105b6 100644 --- a/src/SMAPI/Framework/Commands/IInternalCommand.cs +++ b/src/SMAPI/Framework/Commands/IInternalCommand.cs @@ -1,5 +1,3 @@ -#nullable disable - namespace StardewModdingAPI.Framework.Commands { /// <summary>A core SMAPI console command.</summary> diff --git a/src/SMAPI/Framework/Commands/ReloadI18nCommand.cs b/src/SMAPI/Framework/Commands/ReloadI18nCommand.cs index 2043b35e..12328bb6 100644 --- a/src/SMAPI/Framework/Commands/ReloadI18nCommand.cs +++ b/src/SMAPI/Framework/Commands/ReloadI18nCommand.cs @@ -1,5 +1,3 @@ -#nullable disable - using System; namespace StardewModdingAPI.Framework.Commands |