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:11 UTC

[commons-crypto] 02/06: Format

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 6c7e85afe4d9fc570aef73c110744e3369e82caf
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Dec 12 07:09:18 2022 -0500

    Format
---
 .../org/apache/commons/crypto/random/CryptoRandomFactory.java  | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/src/main/java/org/apache/commons/crypto/random/CryptoRandomFactory.java b/src/main/java/org/apache/commons/crypto/random/CryptoRandomFactory.java
index 9ea4d3b..9a60d79 100644
--- a/src/main/java/org/apache/commons/crypto/random/CryptoRandomFactory.java
+++ b/src/main/java/org/apache/commons/crypto/random/CryptoRandomFactory.java
@@ -34,8 +34,7 @@ public class CryptoRandomFactory {
     /**
      * The configuration key of the file path for secure random device.
      */
-    public static final String DEVICE_FILE_PATH_KEY = Crypto.CONF_PREFIX
-            + "secure.random.device.file.path";
+    public static final String DEVICE_FILE_PATH_KEY = Crypto.CONF_PREFIX + "secure.random.device.file.path";
 
     /**
      * The default value ({@value}) of the file path for secure random device.
@@ -46,8 +45,7 @@ public class CryptoRandomFactory {
     /**
      * The configuration key of the algorithm of secure random.
      */
-    public static final String JAVA_ALGORITHM_KEY = Crypto.CONF_PREFIX
-            + "secure.random.java.algorithm";
+    public static final String JAVA_ALGORITHM_KEY = Crypto.CONF_PREFIX + "secure.random.java.algorithm";
 
     /**
      * The default value ({@value}) of the algorithm of secure random.
@@ -68,8 +66,8 @@ public class CryptoRandomFactory {
      * The value can also be a comma-separated list of class names in
      * order of descending priority.
      */
-    public static final String CLASSES_KEY = Crypto.CONF_PREFIX
-            + "secure.random.classes";
+    public static final String CLASSES_KEY = Crypto.CONF_PREFIX + "secure.random.classes";
+
     /**
      * Defines the internal CryptoRandom implementations.
      * <p>