Commit c4dbd8c24257ff9ffcdda9ed86767092c496a0f6

Authored by Wesnydy Ribeiro
1 parent ac667c52
Exists in devel

Remove lavidlib from text extractor

extrator/src/extratorSRT.cpp
... ... @@ -16,7 +16,6 @@ ExtratorSRT::ExtratorSRT(){
16 16 ExtratorSRT::~ExtratorSRT() {
17 17 listeners->clear();
18 18 delete listeners;
19   - if (file_io) delete file_io;
20 19 PRINTL(util::_DEBUG, "ExtratorSTR finalized!\n");
21 20 }
22 21  
... ...
extrator/src/extratorTXT.cpp
... ... @@ -20,9 +20,6 @@ ExtratorTXT::ExtratorTXT(){
20 20 ExtratorTXT::~ExtratorTXT(){
21 21 listeners->clear();
22 22 delete listeners;
23   - delete file;
24   - delete file_io;
25   - delete bff_reader;
26 23 PRINTL(util::_DEBUG, "ExtratorTXT finalized!\n");
27 24 }
28 25  
... ...