Removes some stray absolute typing

This commit is contained in:
Jordan Brown
2017-10-24 11:12:33 -04:00
committed by GitHub
parent 3c9cccb5f2
commit 01f187ff35
@@ -532,7 +532,7 @@ namespace TGServerService
return; //no need
}
File.Copy(InterfacePath, InterfaceDLLName, overwrite);
Service.WriteInfo("Updated interface DLL", TGServerService.EventID.InterfaceDLLUpdated);
Service.WriteInfo("Updated interface DLL", EventID.InterfaceDLLUpdated);
}
catch
{
@@ -545,7 +545,7 @@ namespace TGServerService
catch (Exception e)
{
//intentionally using the fi
Service.WriteError("Failed to update interface DLL! Error: " + e.ToString(), TGServerService.EventID.InterfaceDLLUpdateFail);
Service.WriteError("Failed to update interface DLL! Error: " + e.ToString(), EventID.InterfaceDLLUpdateFail);
}
}
}