1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0030872: In case of failure, retry to acquire the driver for the format

This commit is contained in:
drazmyslovich 2019-08-07 13:01:13 +02:00 committed by bugmaster
parent 208dc370ac
commit a6b55fba08

View File

@ -393,7 +393,6 @@ Handle(PCDM_Reader) CDF_Application::ReaderFromFormat(const TCollection_Extended
aResourceName += ".RetrievalPlugin";
if (!UTL::Find(Resources(), aResourceName))
{
myReaders.Add(theFormat, aReader);
Standard_SStream aMsg;
aMsg << "Could not found the item:" << aResourceName <<(char)0;
myRetrievableStatus = PCDM_RS_WrongResource;
@ -416,7 +415,6 @@ Handle(PCDM_Reader) CDF_Application::ReaderFromFormat(const TCollection_Extended
}
catch (Standard_Failure const& anException)
{
myReaders.Add(theFormat, aReader);
myRetrievableStatus = PCDM_RS_WrongResource;
throw anException;
}