summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/StardewModdingAPI/Program.cs7
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)
{