Skip to content

Commit 2490376

Browse files
committed
Fix indentation
1 parent cfa7c41 commit 2490376

File tree

1 file changed

+12
-12
lines changed
  • src/main/java/org/apache/commons/codec/digest

1 file changed

+12
-12
lines changed

src/main/java/org/apache/commons/codec/digest/B64.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -66,18 +66,18 @@ static void b64from24bit(final byte b2, final byte b1, final byte b0, final int
6666
}
6767
}
6868

69-
/**
70-
* Generates a string of random chars from the B64T set.
71-
* <p>
72-
* The salt is generated with {@link SecureRandom}.
73-
* </p>
74-
*
75-
* @param num Number of chars to generate.
76-
* @return a random salt {@link String}.
77-
*/
78-
static String getRandomSalt(final int num) {
79-
return getRandomSalt(num, new SecureRandom());
80-
}
69+
/**
70+
* Generates a string of random chars from the B64T set.
71+
* <p>
72+
* The salt is generated with {@link SecureRandom}.
73+
* </p>
74+
*
75+
* @param num Number of chars to generate.
76+
* @return a random salt {@link String}.
77+
*/
78+
static String getRandomSalt(final int num) {
79+
return getRandomSalt(num, new SecureRandom());
80+
}
8181

8282
/**
8383
* Generates a string of random chars from the B64T set.

0 commit comments

Comments
 (0)