mirror of
https://github.com/apache/poi.git
synced 2026-02-27 20:40:08 +08:00
Fix jdk-differences for encryption patch
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1553339 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
633084ecfd
commit
5fd22dd31a
@ -66,7 +66,7 @@ public class EncryptionInfo {
|
||||
try {
|
||||
eib = getBuilder(encryptionMode);
|
||||
} catch (Exception e) {
|
||||
throw new IOException(e);
|
||||
throw (IOException)new IOException().initCause(e);
|
||||
}
|
||||
|
||||
eib.initialize(this, dis);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user