mirror of https://github.com/apache/poi.git
md5hash should not fail silently
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1776828 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2ea45dd2c9
commit
abf3eb7d84
|
@ -109,7 +109,7 @@ public class TestEmbeddedExtractor {
|
|||
return DatatypeConverter.printBase64Binary(hash);
|
||||
} catch (NoSuchAlgorithmException e) {
|
||||
// doesn't happen
|
||||
return "";
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue