Fix #412
This commit is contained in:
yck1509 2016-01-10 19:53:04 +08:00
Родитель 5bbd4afbaf
Коммит 0e283a1b9c
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -9,8 +9,7 @@ namespace Confuser.Runtime {
var env = typeof(Environment);
var method = env.GetMethod("GetEnvironmentVariable", new[] { typeof(string) });
if (method != null &&
(method.Invoke(null, new object[] { x + "_PROFILER" }) != null ||
method.Invoke(null, new object[] { x + "_ENABLE_PROFILING" }) != null))
"1".Equals(method.Invoke(null, new object[] { x + "_ENABLE_PROFILING" })))
Environment.FailFast(null);
var thread = new Thread(Worker);