[fbreader] Housekeeping

Indentation fix
This commit is contained in:
Slava Monich 2015-08-05 19:08:27 +03:00
parent 84d588d07d
commit 764af720e4

View file

@ -109,7 +109,7 @@ shared_ptr<ZLInputStream> ZLFile::inputStream() const {
int index = ZLFSManager::Instance().findArchiveFileNameDelimiter(myPath); int index = ZLFSManager::Instance().findArchiveFileNameDelimiter(myPath);
if (index == -1) { if (index == -1) {
#if !FBREADER_DISABLE_ZLFILE_PLAIN_STREAM_CACHE #if !FBREADER_DISABLE_ZLFILE_PLAIN_STREAM_CACHE
stream = ourPlainStreamCache[myPath]; stream = ourPlainStreamCache[myPath];
if (stream.isNull()) { if (stream.isNull()) {
#endif #endif
if (isDirectory()) { if (isDirectory()) {
@ -118,7 +118,7 @@ shared_ptr<ZLInputStream> ZLFile::inputStream() const {
stream = ZLFSManager::Instance().createPlainInputStream(myPath); stream = ZLFSManager::Instance().createPlainInputStream(myPath);
stream = envelopeCompressedStream(stream); stream = envelopeCompressedStream(stream);
#if !FBREADER_DISABLE_ZLFILE_PLAIN_STREAM_CACHE #if !FBREADER_DISABLE_ZLFILE_PLAIN_STREAM_CACHE
ourPlainStreamCache[myPath] = stream; ourPlainStreamCache[myPath] = stream;
} }
#endif #endif
} else { } else {