Commit 0fcbbd38d4538ae4a5ea8866e01ff894b4f14c91
1 parent
a0c84d7c
Exists in
master
and in
96 other branches
Fix CDF reader
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/ParamGetImpl/LocalFileInterface/FileReaderCDF.cc
... | ... | @@ -30,8 +30,8 @@ bool FileReaderCDF::open(std::string filePath) |
30 | 30 | |
31 | 31 | if (isOpened()) |
32 | 32 | { |
33 | - LOG4CXX_ERROR(gLogger, "FileReaderCDF::open - A file is already opened"); | |
34 | - return false; | |
33 | + //LOG4CXX_ERROR(gLogger, "FileReaderCDF::open - A file is already opened"); | |
34 | + return true;//false; | |
35 | 35 | } |
36 | 36 | |
37 | 37 | CDFstatus status = CDFopenCDF(filePath.c_str(), &_cdfid); | ... | ... |