diff options
author | Elliott Hughes <enh@google.com> | 2011-02-28 16:43:36 -0800 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2011-02-28 16:43:36 -0800 |
commit | 56b9c93d039e8b41f9317e15cf013c53f6d1f31f (patch) | |
tree | 71addc584f13ea5264acad22e7e192d4160621b1 /luni | |
parent | 08bad46e2b61b5005eb02a401e97fec25d9d3013 (diff) | |
parent | 95187055a32acbc27ff91db542bb2f55649c5101 (diff) | |
download | libcore-56b9c93d039e8b41f9317e15cf013c53f6d1f31f.zip libcore-56b9c93d039e8b41f9317e15cf013c53f6d1f31f.tar.gz libcore-56b9c93d039e8b41f9317e15cf013c53f6d1f31f.tar.bz2 |
am 95187055: Fix a broken @link in the SecureRandom documentation.
* commit '95187055a32acbc27ff91db542bb2f55649c5101':
Fix a broken @link in the SecureRandom documentation.
Diffstat (limited to 'luni')
-rw-r--r-- | luni/src/main/java/java/security/SecureRandom.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/luni/src/main/java/java/security/SecureRandom.java b/luni/src/main/java/java/security/SecureRandom.java index bd78eba..fa1d5ed 100644 --- a/luni/src/main/java/java/security/SecureRandom.java +++ b/luni/src/main/java/java/security/SecureRandom.java @@ -60,7 +60,7 @@ import org.apache.harmony.security.provider.crypto.SHA1PRNG_SecureRandomImpl; * that value is more predictable to an attacker than the default seed. * * <p>Calling {@link #setSeed} on a {@code SecureRandom} <i>after</i> it has - * been used to generate random numbers (ie. calling {#link nextBytes}) will + * been used to generate random numbers (ie. calling {@link #nextBytes}) will * supplement the existing seed. This does not cause the instance to return a * predictable numbers, nor does it harm the security of the numbers generated. */ |