small fix redundant

This commit is contained in:
Wilfredo Rodriguez 2015-07-03 10:10:14 -03:00
parent ecb821a834
commit 2490f3c916

View File

@ -231,7 +231,6 @@ bool ContentManager::ListBooks(string &mode, string &sortBy, unsigned int maxSiz
return this->manager.listBooks(listMode, listSortBy, maxSize, language.c_str(), publisher.c_str(), search.c_str());
} catch (exception &e) {
cerr << e.what() << endl;
return false;
}
return false;
}
@ -258,7 +257,6 @@ bool ContentManager::SetBookIndex(string &id, string &path, string &indexType) {
return this->manager.setBookIndex(id.c_str(), path.c_str(), iType);
} catch (exception &e) {
cerr << e.what() << endl;
return false;
}
return false;
@ -269,7 +267,6 @@ bool ContentManager::SetBookPath(string &id, string &path) {
return this->manager.setBookPath(id.c_str(), path.c_str());
} catch (exception &e) {
cerr << e.what() << endl;
return false;
}
return false;
}