From a6b55fba089b324d58781be0fbb81685db9305d9 Mon Sep 17 00:00:00 2001 From: drazmyslovich Date: Wed, 7 Aug 2019 13:01:13 +0200 Subject: [PATCH] 0030872: In case of failure, retry to acquire the driver for the format --- src/CDF/CDF_Application.cxx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/CDF/CDF_Application.cxx b/src/CDF/CDF_Application.cxx index 482b70ea2d..1ee19f6006 100644 --- a/src/CDF/CDF_Application.cxx +++ b/src/CDF/CDF_Application.cxx @@ -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; }