Browse Source

md5hash should not fail silently

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1776828 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_3_16_BETA2
Javen O'Neal 7 years ago
parent
commit
abf3eb7d84

+ 1
- 1
src/ooxml/testcases/org/apache/poi/ss/extractor/TestEmbeddedExtractor.java View File

@@ -109,7 +109,7 @@ public class TestEmbeddedExtractor {
return DatatypeConverter.printBase64Binary(hash);
} catch (NoSuchAlgorithmException e) {
// doesn't happen
return "";
throw new RuntimeException(e);
}
}
}

Loading…
Cancel
Save