summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework
diff options
context:
space:
mode:
authorbladeoflight16 <1159076+bladeoflight16@users.noreply.github.com>2021-07-27 17:17:56 -0400
committerbladeoflight16 <1159076+bladeoflight16@users.noreply.github.com>2021-07-27 17:17:56 -0400
commit97710d6f47ca180540d8b5c203ae6f4ca089fcb8 (patch)
tree8ae9597721a2417ee538e26f7078e2b8b57fee0d /src/SMAPI/Framework
parent175eaad68373185b010410c5e2de1af9afbba1f5 (diff)
downloadSMAPI-97710d6f47ca180540d8b5c203ae6f4ca089fcb8.tar.gz
SMAPI-97710d6f47ca180540d8b5c203ae6f4ca089fcb8.tar.bz2
SMAPI-97710d6f47ca180540d8b5c203ae6f4ca089fcb8.zip
Fixing mono incompatibility (case exception type statement without variable)
Diffstat (limited to 'src/SMAPI/Framework')
-rw-r--r--src/SMAPI/Framework/Logging/LogManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/Logging/LogManager.cs b/src/SMAPI/Framework/Logging/LogManager.cs
index a4df3c18..2cd512e0 100644
--- a/src/SMAPI/Framework/Logging/LogManager.cs
+++ b/src/SMAPI/Framework/Logging/LogManager.cs
@@ -258,7 +258,7 @@ namespace StardewModdingAPI.Framework.Logging
break;
// path too long exception
- case PathTooLongException:
+ case PathTooLongException _:
{
string[] affectedPaths = PathUtilities.GetTooLongPaths(Constants.ModsPath).ToArray();
string message = affectedPaths.Any()