aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs
diff options
context:
space:
mode:
authorErwin de Haan <EraYaN@users.noreply.github.com>2019-01-28 22:21:14 +0100
committerErwin de Haan <EraYaN@users.noreply.github.com>2019-01-28 22:21:14 +0100
commit838541b82530ce556cd5ab005ba59359f83c9509 (patch)
tree12e5914043140937d4fbba8994ac7ece2394cda0 /Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs
parent1d1d7e8a3767cf0b13d6aa630bc587f4dc43b698 (diff)
Removed loose whitespace and one .ToArray() call.
Diffstat (limited to 'Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs')
-rw-r--r--Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs b/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs
index 6da76ee7e..90b43bc59 100644
--- a/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs
+++ b/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs
@@ -209,7 +209,6 @@ namespace Emby.Server.Implementations.AppBase
protected void EnsureWriteAccess(string path)
{
var file = Path.Combine(path, Guid.NewGuid().ToString());
-
File.WriteAllText(file, string.Empty);
FileSystem.DeleteFile(file);
}