From bcaecb8788e390d44475970307cf657410f49030 Mon Sep 17 00:00:00 2001 From: Rich Dunne Date: Sat, 1 May 2021 13:15:52 -0600 Subject: [PATCH] Remove unused code --- SceneManager/Utils/PathXMLManager.cs | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/SceneManager/Utils/PathXMLManager.cs b/SceneManager/Utils/PathXMLManager.cs index f6ac675..906a747 100644 --- a/SceneManager/Utils/PathXMLManager.cs +++ b/SceneManager/Utils/PathXMLManager.cs @@ -130,25 +130,5 @@ namespace SceneManager.Utils { ModifyItemInXML>(path, t => t.Add(objectToAdd)); } - - ///// - ///// Creates folder in case it doesn't exist and checks file existance. - ///// - ///// - ///// false when a file does not exist. - //private static bool ValidatePath(string path) - //{ - // //TODO: implement - // // - check extension - // // - bool param: createDir - // string dir = Path.GetDirectoryName(path); - // if (!Directory.Exists(dir)) - // { - // Directory.CreateDirectory(dir); - // return false; - // } - - // return File.Exists(path); - //} } }