File tree Expand file tree Collapse file tree
src/main/java/org/apache/commons/codec/digest Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1035,7 +1035,7 @@ public String asHex() {
10351035 * @return the updated {@link DigestUtils}
10361036 * @since 1.11
10371037 */
1038- public DigestUtils update (final byte [] data ) throws IOException {
1038+ public DigestUtils update (final byte [] data ) {
10391039 messageDigest .update (data );
10401040 return this ;
10411041 }
@@ -1048,7 +1048,7 @@ public DigestUtils update(final byte[] data) throws IOException {
10481048 * @return the updated {@link DigestUtils}
10491049 * @since 1.11
10501050 */
1051- public DigestUtils update (final ByteBuffer data ) throws IOException {
1051+ public DigestUtils update (final ByteBuffer data ) {
10521052 messageDigest .update (data );
10531053 return this ;
10541054 }
@@ -1061,7 +1061,7 @@ public DigestUtils update(final ByteBuffer data) throws IOException {
10611061 * @return the updated {@link DigestUtils}
10621062 * @since 1.11
10631063 */
1064- public DigestUtils update (final String data ) throws IOException {
1064+ public DigestUtils update (final String data ) {
10651065 messageDigest .update (StringUtils .getBytesUtf8 (data ));
10661066 return this ;
10671067 }
You can’t perform that action at this time.
0 commit comments