mirror of
https://github.com/pocoproject/poco.git
synced 2025-02-08 06:45:55 +01:00
#1319: remove call to poco_unexpected()
This commit is contained in:
parent
cab7142a4e
commit
8e7018df90
@ -114,13 +114,11 @@ protected:
|
|||||||
{
|
{
|
||||||
entries[it.path().getFileName()] = ItemInfo(*it);
|
entries[it.path().getFileName()] = ItemInfo(*it);
|
||||||
}
|
}
|
||||||
catch(const Poco::FileNotFoundException& fnfe)
|
catch (Poco::FileNotFoundException&)
|
||||||
{
|
{
|
||||||
// The file is missing, remove it from the entries so it is treated as
|
// The file is missing, remove it from the entries so it is treated as
|
||||||
// deleted.
|
// deleted.
|
||||||
entries.erase(it.path().getFileName());
|
entries.erase(it.path().getFileName());
|
||||||
|
|
||||||
poco_unexpected();
|
|
||||||
}
|
}
|
||||||
++it;
|
++it;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user