diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-02-03 22:26:48 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-02-03 22:26:48 -0500 |
commit | 0b8396cc53ff28d3808e0c6d3fea693775d2ab81 (patch) | |
tree | 8187cf86d77b6fb54b2378d4b15eb30583012b06 /src/StardewModdingAPI | |
parent | 8d3e6048b88d1df3dbe47827d9a115c8e359958d (diff) | |
download | SMAPI-0b8396cc53ff28d3808e0c6d3fea693775d2ab81.tar.gz SMAPI-0b8396cc53ff28d3808e0c6d3fea693775d2ab81.tar.bz2 SMAPI-0b8396cc53ff28d3808e0c6d3fea693775d2ab81.zip |
rm cruft
Diffstat (limited to 'src/StardewModdingAPI')
-rw-r--r-- | src/StardewModdingAPI/Program.cs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/StardewModdingAPI/Program.cs b/src/StardewModdingAPI/Program.cs index 075d2de0..45bf1238 100644 --- a/src/StardewModdingAPI/Program.cs +++ b/src/StardewModdingAPI/Program.cs @@ -40,9 +40,6 @@ namespace StardewModdingAPI /// <summary>The full path to the folder containing mods.</summary> private static readonly string ModPath = Path.Combine(Constants.ExecutionPath, "Mods"); - /// <summary>The name of the folder containing a mod's cached assembly data.</summary> - private static readonly string CacheDirName = ".cache"; - /// <summary>The log file to which to write messages.</summary> private static readonly LogFileManager LogFile = new LogFileManager(Constants.LogPath); @@ -341,10 +338,6 @@ namespace StardewModdingAPI { string directoryName = new DirectoryInfo(directory).Name; - // ignore internal directory - if (directoryName == ".cache") - continue; - // check for cancellation if (Program.CancellationTokenSource.IsCancellationRequested) { |