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-codec.git

commit 249037646efcc70b09495f2ff3e79b6ab3bc6460
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Fri Apr 19 08:32:53 2024 -0400

    Fix indentation
---
 .../java/org/apache/commons/codec/digest/B64.java  | 24 +++++++++++-----------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/src/main/java/org/apache/commons/codec/digest/B64.java 
b/src/main/java/org/apache/commons/codec/digest/B64.java
index a0973f5b..5627570d 100644
--- a/src/main/java/org/apache/commons/codec/digest/B64.java
+++ b/src/main/java/org/apache/commons/codec/digest/B64.java
@@ -66,18 +66,18 @@ final class B64 {
         }
     }
 
-  /**
-   * Generates a string of random chars from the B64T set.
-   * <p>
-   * The salt is generated with {@link SecureRandom}.
-   * </p>
-   *
-   * @param num Number of chars to generate.
-   * @return a random salt {@link String}.
-   */
-  static String getRandomSalt(final int num) {
-    return getRandomSalt(num, new SecureRandom());
-  }
+    /**
+     * Generates a string of random chars from the B64T set.
+     * <p>
+     * The salt is generated with {@link SecureRandom}.
+     * </p>
+     *
+     * @param num Number of chars to generate.
+     * @return a random salt {@link String}.
+     */
+    static String getRandomSalt(final int num) {
+        return getRandomSalt(num, new SecureRandom());
+    }
 
     /**
      * Generates a string of random chars from the B64T set.

Reply via email to