aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.SQLExaminer/ExtensionMethods.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.SQLExaminer/ExtensionMethods.cs')
-rw-r--r--Software/Visual_Studio/Tango.SQLExaminer/ExtensionMethods.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/Software/Visual_Studio/Tango.SQLExaminer/ExtensionMethods.cs b/Software/Visual_Studio/Tango.SQLExaminer/ExtensionMethods.cs
deleted file mode 100644
index 09a830ab3..000000000
--- a/Software/Visual_Studio/Tango.SQLExaminer/ExtensionMethods.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using Tango.SQLExaminer;
-
-public static class ExtensionMethods
-{
- public static String GetFilePath(this ExaminerConfigurationType type)
- {
- return Path.Combine(Helper.SQL_EXAMINER_CONFIG_FOLDER, type.ToString() + ".xml");
- }
-
- public static String GetFileName(this ExaminerConfigurationType type)
- {
- return type.ToString() + ".xml";
- }
-}
-