diff --git a/src/Umbraco.Core/IO/SystemFiles.cs b/src/Umbraco.Core/IO/SystemFiles.cs deleted file mode 100644 index 64199a1c51..0000000000 --- a/src/Umbraco.Core/IO/SystemFiles.cs +++ /dev/null @@ -1,16 +0,0 @@ -using System.IO; -using Umbraco.Cms.Core.Hosting; - -namespace Umbraco.Cms.Core.IO -{ - public class SystemFiles - { - public static string TinyMceConfig => Constants.SystemDirectories.Config + "/tinyMceConfig.config"; - - // TODO: Kill this off we don't have umbraco.config XML cache we now have NuCache - public static string GetContentCacheXml(IHostingEnvironment hostingEnvironment) - { - return Path.Combine(hostingEnvironment.LocalTempPath, "umbraco.config"); - } - } -}