diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-06-08 18:46:58 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-06-08 18:46:58 -0400 |
commit | 86a3f8dd460f329fad903770231016813e750168 (patch) | |
tree | 6db8cd9c2be1c507c8c79af02889d64ba08458ff /src/SMAPI.Installer/InteractiveInstaller.cs | |
parent | 18906de0f4a31b70f21f386f65bd3fda3ec9fb13 (diff) | |
download | SMAPI-86a3f8dd460f329fad903770231016813e750168.tar.gz SMAPI-86a3f8dd460f329fad903770231016813e750168.tar.bz2 SMAPI-86a3f8dd460f329fad903770231016813e750168.zip |
allow launching multiple instances without manually changing log path (#494)
Diffstat (limited to 'src/SMAPI.Installer/InteractiveInstaller.cs')
-rw-r--r-- | src/SMAPI.Installer/InteractiveInstaller.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/SMAPI.Installer/InteractiveInstaller.cs b/src/SMAPI.Installer/InteractiveInstaller.cs index 6e4cb95d..02dd6891 100644 --- a/src/SMAPI.Installer/InteractiveInstaller.cs +++ b/src/SMAPI.Installer/InteractiveInstaller.cs @@ -518,6 +518,7 @@ namespace StardewModdingApi.Installer /// <summary>Delete a file or folder regardless of file permissions, and block until deletion completes.</summary> /// <param name="entry">The file or folder to reset.</param> + /// <remarks>This method is mirred from <c>FileUtilities.ForceDelete</c> in the toolkit.</remarks> private void ForceDelete(FileSystemInfo entry) { // ignore if already deleted |