Remove licensing folder checking .. since it is nolonger a folder

This commit is contained in:
Abdelrahman Mahmoud 2015-09-04 11:23:50 -04:00
parent f2770f9968
commit 047418b0e6
1 changed files with 0 additions and 7 deletions

View File

@ -163,13 +163,6 @@ namespace AffdexMe
ShowExceptionAndShutDown("AFFDEX_LICENSE_DIR environment variable (Affdex License Folder) is not set");
}
// Test the directory
DirectoryInfo directoryInfo = new DirectoryInfo(licensePath);
if (!directoryInfo.Exists)
{
ShowExceptionAndShutDown("AFFDEX_License_DIR (Affex License Folder) is set to an invalid folder location");
}
return licensePath;
}