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 2022/12/12 12:21:15 UTC

[commons-crypto] 06/06: Comments

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-crypto.git

commit 951732d601a2415f2952b48515334d88e105f103
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Dec 12 07:21:04 2022 -0500

    Comments
---
 src/test/java/org/apache/commons/crypto/random/AbstractRandom.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/test/java/org/apache/commons/crypto/random/AbstractRandom.java b/src/test/java/org/apache/commons/crypto/random/AbstractRandom.java
index bd1393b..5432f4d 100644
--- a/src/test/java/org/apache/commons/crypto/random/AbstractRandom.java
+++ b/src/test/java/org/apache/commons/crypto/random/AbstractRandom.java
@@ -24,8 +24,7 @@ import java.util.Properties;
  */
 abstract class AbstractRandom implements CryptoRandom {
 
-    // Should fail to instantiate, as it is an abstract class
     AbstractRandom(final Properties properties) {
-
+        // empty
     }
 }