#1319: remove call to poco_unexpected()

This commit is contained in:
Guenter Obiltschnig 2016-08-02 13:11:04 +08:00
parent cab7142a4e
commit 8e7018df90

View File

@ -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;
} }