Merge "Fix ObjectReader resources leak"

This commit is contained in:
Shawn Pearce 2015-05-20 02:02:25 -04:00 committed by Gerrit Code Review @ Eclipse.org
commit faf0a8f61d
1 changed files with 2 additions and 2 deletions

View File

@ -429,7 +429,7 @@ public BitmapIndex getBitmapIndex() throws IOException {
*/ */
@Deprecated @Deprecated
public void release() { public void release() {
close(); // Do nothing.
} }
/** /**
@ -442,6 +442,6 @@ public void release() {
*/ */
@Override @Override
public void close() { public void close() {
// Do nothing. release();
} }
} }