summaryrefslogtreecommitdiff
path: root/src/SMAPI/Constants.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI/Constants.cs')
-rw-r--r--src/SMAPI/Constants.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs
index e3a6e6d5..9b113733 100644
--- a/src/SMAPI/Constants.cs
+++ b/src/SMAPI/Constants.cs
@@ -190,7 +190,7 @@ namespace StardewModdingAPI
** Private methods
*********/
/// <summary>Get the name of the save folder, if any.</summary>
- internal static string GetSaveFolderName()
+ private static string GetSaveFolderName()
{
// save not available
if (Context.LoadStage == LoadStage.None)
@@ -215,7 +215,7 @@ namespace StardewModdingAPI
}
/// <summary>Get the path to the current save folder, if any.</summary>
- internal static string GetSaveFolderPathIfExists()
+ private static string GetSaveFolderPathIfExists()
{
string folderName = Constants.GetSaveFolderName();
if (folderName == null)