Sync with trunk for NPOIFS

git-svn-id: https://svn.apache.org/repos/asf/poi/branches/NIO_32_BRANCH@1055380 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2011-01-05 09:42:30 +00:00
parent c1e2c16412
commit 8571f9e70c
1 changed files with 8 additions and 0 deletions

View File

@ -183,6 +183,14 @@ public class NPOIFSFileSystem extends BlockStore
channel.close();
}
throw e;
} catch(RuntimeException e) {
// Comes from Iterators etc.
// TODO Decide if we can handle these better whilst
// still sticking to the iterator contract
if(closeChannelOnError) {
channel.close();
}
throw e;
}
}