You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2016/06/07 03:05:28 UTC

commons-crypto git commit: The value of the field JavaCryptoRandom.LOG is not used.

Repository: commons-crypto
Updated Branches:
  refs/heads/master 5384a5d6c -> fdd4bde42


The value of the field JavaCryptoRandom.LOG is not used.

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

Branch: refs/heads/master
Commit: fdd4bde429267f946b72fa33a61589f5384187f7
Parents: 5384a5d
Author: ggregory <gg...@apache.org>
Authored: Mon Jun 6 20:05:26 2016 -0700
Committer: ggregory <gg...@apache.org>
Committed: Mon Jun 6 20:05:26 2016 -0700

----------------------------------------------------------------------
 .../java/org/apache/commons/crypto/random/JavaCryptoRandom.java | 5 -----
 1 file changed, 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-crypto/blob/fdd4bde4/src/main/java/org/apache/commons/crypto/random/JavaCryptoRandom.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/crypto/random/JavaCryptoRandom.java b/src/main/java/org/apache/commons/crypto/random/JavaCryptoRandom.java
index 69fbf98..390f381 100644
--- a/src/main/java/org/apache/commons/crypto/random/JavaCryptoRandom.java
+++ b/src/main/java/org/apache/commons/crypto/random/JavaCryptoRandom.java
@@ -21,17 +21,12 @@ import java.security.NoSuchAlgorithmException;
 import java.security.SecureRandom;
 import java.util.Properties;
 
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
-
 import org.apache.commons.crypto.conf.ConfigurationKeys;
 
 /**
  * A CryptoRandom of Java implementation.
  */
 public class JavaCryptoRandom implements CryptoRandom {
-    private static final Log LOG = LogFactory.getLog(JavaCryptoRandom.class
-            .getName());
 
     private final SecureRandom instance;