diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-06-19 22:10:15 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-06-19 22:10:15 -0400 |
commit | d401aff3307f6e2e1641610fdd912b572d6b04c1 (patch) | |
tree | 361db0c08914b34a58ac985aeacd108c8b932ae0 /src/SMAPI/Framework/ModUpdateChecking/ModUpdateStatus.cs | |
parent | 4a05cd09b66a9ec37522aa656ab0814095ab6d23 (diff) | |
download | SMAPI-d401aff3307f6e2e1641610fdd912b572d6b04c1.tar.gz SMAPI-d401aff3307f6e2e1641610fdd912b572d6b04c1.tar.bz2 SMAPI-d401aff3307f6e2e1641610fdd912b572d6b04c1.zip |
rewrite update checks (#551)
Diffstat (limited to 'src/SMAPI/Framework/ModUpdateChecking/ModUpdateStatus.cs')
-rw-r--r-- | src/SMAPI/Framework/ModUpdateChecking/ModUpdateStatus.cs | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/src/SMAPI/Framework/ModUpdateChecking/ModUpdateStatus.cs b/src/SMAPI/Framework/ModUpdateChecking/ModUpdateStatus.cs deleted file mode 100644 index efb32aef..00000000 --- a/src/SMAPI/Framework/ModUpdateChecking/ModUpdateStatus.cs +++ /dev/null @@ -1,37 +0,0 @@ -namespace StardewModdingAPI.Framework.ModUpdateChecking -{ - /// <summary>Update status for a mod.</summary> - internal class ModUpdateStatus - { - /********* - ** Accessors - *********/ - /// <summary>The version that this mod can be updated to (if any).</summary> - public ISemanticVersion Version { get; } - - /// <summary>The error checking for updates of this mod (if any).</summary> - public string Error { get; } - - /********* - ** Public methods - *********/ - /// <summary>Construct an instance.</summary> - /// <param name="version">The version that this mod can be update to.</param> - public ModUpdateStatus(ISemanticVersion version) - { - this.Version = version; - } - - /// <summary>Construct an instance.</summary> - /// <param name="error">The error checking for updates of this mod.</param> - public ModUpdateStatus(string error) - { - this.Error = error; - } - - /// <summary>Construct an instance.</summary> - public ModUpdateStatus() - { - } - } -} |