Compare commits
2 Commits
9874caf690
...
d6ef87c351
Author | SHA1 | Date | |
---|---|---|---|
d6ef87c351 | |||
e323494842 |
@ -147,11 +147,11 @@ namespace Bulldozer.Generics
|
|||||||
var strs = str.Split(new char[] { '\n', '\r' }, StringSplitOptions.RemoveEmptyEntries);
|
var strs = str.Split(new char[] { '\n', '\r' }, StringSplitOptions.RemoveEmptyEntries);
|
||||||
if (strs == null || strs.Length == 0)
|
if (strs == null || strs.Length == 0)
|
||||||
{
|
{
|
||||||
return false;
|
throw new IOException("Нет данных для загрузки");
|
||||||
}
|
}
|
||||||
if (!strs[0].StartsWith("BulldozerStorage"))
|
if (!strs[0].StartsWith("BulldozerStorage"))
|
||||||
{
|
{
|
||||||
return false;
|
throw new IOException("Неверный формат данных");
|
||||||
}
|
}
|
||||||
_bulldozerStorages.Clear();
|
_bulldozerStorages.Clear();
|
||||||
do
|
do
|
||||||
@ -172,7 +172,7 @@ namespace Bulldozer.Generics
|
|||||||
{
|
{
|
||||||
if ((collection + bulldozer) == -1)
|
if ((collection + bulldozer) == -1)
|
||||||
{
|
{
|
||||||
return false;
|
throw new IOException("Ошибка добавления в коллекцию");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -185,4 +185,3 @@ namespace Bulldozer.Generics
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user