No longer fails to load the certain result file

This commit is contained in:
yvt 2014-08-25 22:46:05 +09:00
Родитель a4500c8db6
Коммит d9b936279d
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -234,6 +234,9 @@ public class CoverageModel : CoverageItem {
string className = n.Attributes ["class"].Value;
string methodName = n.Attributes ["name"].Value;
string token = n.Attributes ["token"].Value;
if (n.FirstChild == null) {
continue;
}
string cov_info = n.FirstChild.Value;
int itok = int.Parse (token);