Skip empty lines in response file, instead of throwing an exception.

This commit is contained in:
jfrijters 2009-06-25 09:21:12 +00:00
Родитель bc47380664
Коммит 3643bf7748
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -65,7 +65,11 @@ class IkvmcCompiler
string line;
while((line = sr.ReadLine()) != null)
{
arglist.Add(line.Trim());
string arg = line.Trim();
if (arg != "")
{
arglist.Add(arg);
}
}
}
}