Skip to content

Commit 8b36537

Browse files
committed
Fix Javadoc bad link.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1634406 13f79535-47bb-0310-9956-ffa450edef68
1 parent d18de6b commit 8b36537

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/main/java/org/apache/commons/codec/digest/HmacUtils.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
import java.io.IOException;
2121
import java.io.InputStream;
2222
import java.security.InvalidKeyException;
23+
import java.security.Key;
2324
import java.security.NoSuchAlgorithmException;
2425

2526
import javax.crypto.Mac;
@@ -54,7 +55,7 @@ public final class HmacUtils {
5455
* They key for the keyed digest (must not be null)
5556
* @return A Mac instance initialized with the given key.
5657
* @see Mac#getInstance(String)
57-
* @see Mac#init(SecretKeySpec)
58+
* @see Mac#init(Key)
5859
* @throws IllegalArgumentException
5960
* when a {@link NoSuchAlgorithmException} is caught or key is null or key is invalid.
6061
*/

0 commit comments

Comments
 (0)