Removed python path and python plugin functions

This commit is contained in:
Alekhya Reddy
2020-03-23 15:23:09 -07:00
parent 8e2b18ea1d
commit db253cdaf8
7 changed files with 3 additions and 127 deletions

View File

@@ -2,11 +2,6 @@
{
public static class AllowedLanguage
{
public static string Python
{
get { return "PYTHON"; }
}
public static string CSharp
{
get { return "CSHARP"; }
@@ -19,8 +14,7 @@
public static bool IsAllowed(string language)
{
return language.ToUpper() == Python.ToUpper()
|| language.ToUpper() == CSharp.ToUpper()
return language.ToUpper() == CSharp.ToUpper()
|| language.ToUpper() == Executable.ToUpper();
}
}