Author: ggregory
Date: Tue Jul 5 17:28:57 2016
New Revision: 1751510
URL: http://svn.apache.org/viewvc?rev=1751510&view=rev
Log:
Javadoc fixes.
Modified:
commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/digest/HmacUtils.java
Modified:
commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/digest/HmacUtils.java
URL:
http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/digest/HmacUtils.java?rev=1751510&r1=1751509&r2=1751510&view=diff
==============================================================================
---
commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/digest/HmacUtils.java
(original)
+++
commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/digest/HmacUtils.java
Tue Jul 5 17:28:57 2016
@@ -952,8 +952,6 @@ public final class HmacUtils {
*
* @param valueToDigest the input to use
* @return the digest as a byte[]
- * @throws IOException
- * If an I/O error occurs.
* @since 1.11
*/
public byte[] hmac(byte[] valueToDigest) {
@@ -965,8 +963,6 @@ public final class HmacUtils {
*
* @param valueToDigest the input to use
* @return the digest as a hex String
- * @throws IOException
- * If an I/O error occurs.
* @since 1.11
*/
public String hmacHex(byte[] valueToDigest) {
@@ -978,8 +974,6 @@ public final class HmacUtils {
*
* @param valueToDigest the input to use, treated as UTF-8
* @return the digest as a byte[]
- * @throws IOException
- * If an I/O error occurs.
* @since 1.11
*/
public byte[] hmac(String valueToDigest) {
@@ -991,8 +985,6 @@ public final class HmacUtils {
*
* @param valueToDigest the input to use, treated as UTF-8
* @return the digest as a hex String
- * @throws IOException
- * If an I/O error occurs.
* @since 1.11
*/
public String hmacHex(String valueToDigest) {
@@ -1004,8 +996,6 @@ public final class HmacUtils {
*
* @param valueToDigest the input to use
* @return the digest as a byte[]
- * @throws IOException
- * If an I/O error occurs.
* @since 1.11
*/
public byte[] hmac(ByteBuffer valueToDigest) {
@@ -1018,8 +1008,6 @@ public final class HmacUtils {
*
* @param valueToDigest the input to use
* @return the digest as a hex String
- * @throws IOException
- * If an I/O error occurs.
* @since 1.11
*/
public String hmacHex(ByteBuffer valueToDigest) {