File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -436,15 +436,10 @@ void File::openPath(std::string const &pathname) {
436
436
// -- check the type of the entry, Group or DataSet
437
437
// -- open with appropriate method
438
438
if (m_fileTree[new_path] == scientific_data_set) {
439
- printf (" data %s %s\n " , new_path.c_str (), m_fileTree[new_path].c_str ());
440
- LOG_LINE ();
441
439
m_current = std::make_shared<H5::DataSet>(H5::H5File::openDataSet (new_path));
442
440
} else {
443
- printf (" group %s %s\n " , new_path.c_str (), m_fileTree[new_path].c_str ());
444
- LOG_LINE ()
445
441
m_current = std::make_shared<H5::Group>(H5::H5File::openGroup (new_path));
446
442
}
447
- LOG_LINE ()
448
443
m_path = new_path;
449
444
} else {
450
445
throw NXEXCEPTION (" Attempted to open invalid path: " + new_path.string () + " from " + m_path.string ());
You can’t perform that action at this time.
0 commit comments