No longer closes the stream. The wrapped stream will take care of that.

This commit is contained in:
Harald Kuhr 2010-02-07 18:00:09 +01:00
parent 1c58bdbb81
commit 3d4d60c664

View File

@ -154,7 +154,7 @@ public final class BufferedImageInputStream extends ImageInputStreamImpl impleme
@Override
public void close() throws IOException {
if (mStream != null) {
mStream.close();
//mStream.close();
mStream = null;
mBuffer = null;
}