Fixed bugs in Seekable implementations.

This commit is contained in:
Harald Kuhr
2011-10-20 18:10:29 +02:00
parent cee29fb6a1
commit 0e11d6e2ae
2 changed files with 17 additions and 5 deletions
@@ -138,7 +138,7 @@ abstract class AbstractCachedSeekableStream extends SeekableInputStream {
}
}
}
else if (streamPosition >= pPosition) {
else /*if (streamPosition >= pPosition) */ {
// Seek backwards into the cache
cache.seek(pPosition);
}