diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-10-09 21:03:25 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-10-09 21:03:25 -0400 |
commit | 4f8994a1debdc4f1b2cb39854977e3b00a851992 (patch) | |
tree | e7c61afa3d741e65ed84532dbfba34d79e4ead5e /src/SMAPI.Common/Models/ModSeachModel.cs | |
parent | c456a0f56ed0fba55042c167afa83c9922a5db33 (diff) | |
download | SMAPI-4f8994a1debdc4f1b2cb39854977e3b00a851992.tar.gz SMAPI-4f8994a1debdc4f1b2cb39854977e3b00a851992.tar.bz2 SMAPI-4f8994a1debdc4f1b2cb39854977e3b00a851992.zip |
fix update check error
Diffstat (limited to 'src/SMAPI.Common/Models/ModSeachModel.cs')
-rw-r--r-- | src/SMAPI.Common/Models/ModSeachModel.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/SMAPI.Common/Models/ModSeachModel.cs b/src/SMAPI.Common/Models/ModSeachModel.cs index 3f69f0ae..13b05d2d 100644 --- a/src/SMAPI.Common/Models/ModSeachModel.cs +++ b/src/SMAPI.Common/Models/ModSeachModel.cs @@ -17,10 +17,12 @@ namespace StardewModdingAPI.Common.Models ** Public methods *********/ /// <summary>Construct an empty instance.</summary> - /// <remarks>This constructed is needed for JSON deserialisation.</remarks> - public ModSearchModel() { } + public ModSearchModel() + { + // needed for JSON deserialising + } - /// <summary>Construct an valid instance.</summary> + /// <summary>Construct an instance.</summary> /// <param name="modKeys">The namespaced mod keys to search.</param> public ModSearchModel(IEnumerable<string> modKeys) { |