You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2016/06/12 12:51:39 UTC

commons-crypto git commit: Don't import class just for linking in JavaDoc

Repository: commons-crypto
Updated Branches:
  refs/heads/master 2d4c75cca -> 4f48f23c4


Don't import class just for linking in JavaDoc


Project: http://git-wip-us.apache.org/repos/asf/commons-crypto/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-crypto/commit/4f48f23c
Tree: http://git-wip-us.apache.org/repos/asf/commons-crypto/tree/4f48f23c
Diff: http://git-wip-us.apache.org/repos/asf/commons-crypto/diff/4f48f23c

Branch: refs/heads/master
Commit: 4f48f23c46739afa238213004f25f8591e48afff
Parents: 2d4c75c
Author: Benedikt Ritter <be...@gmail.com>
Authored: Sun Jun 12 14:51:33 2016 +0200
Committer: Benedikt Ritter <be...@gmail.com>
Committed: Sun Jun 12 14:51:33 2016 +0200

----------------------------------------------------------------------
 .../java/org/apache/commons/crypto/conf/ConfigurationKeys.java    | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-crypto/blob/4f48f23c/src/main/java/org/apache/commons/crypto/conf/ConfigurationKeys.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/crypto/conf/ConfigurationKeys.java b/src/main/java/org/apache/commons/crypto/conf/ConfigurationKeys.java
index c6005a5..3c65a21 100644
--- a/src/main/java/org/apache/commons/crypto/conf/ConfigurationKeys.java
+++ b/src/main/java/org/apache/commons/crypto/conf/ConfigurationKeys.java
@@ -18,7 +18,6 @@
 package org.apache.commons.crypto.conf;
 
 import org.apache.commons.crypto.cipher.OpensslCipher;
-import org.apache.commons.crypto.random.CryptoRandom;
 
 /**
  * The ConfigurationKeys contains Configuration keys and default values.
@@ -92,7 +91,7 @@ public class ConfigurationKeys {
      * "org.apache.commons.crypto.random.OpensslCryptoRandom". And it takes a
      * common separated list. The
      * "org.apache.commons.crypto.random.JavaCryptoRandom" use java to implement
-     * {@link CryptoRandom} and the
+     * {@link org.apache.commons.crypto.random.CryptoRandom} and the
      * "org.apache.commons.crypto.random.OpensslCryptoRandom" use jni into
      * openssl to implement. Note that for each value,the first value which can
      * be created without exception will be used (priority by order).