Skip to content

Commit 9b5a2e0

Browse files
committed
Remove dead comment.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1380012 13f79535-47bb-0310-9956-ffa450edef68
1 parent 3340c35 commit 9b5a2e0

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,6 @@ public static String crypt(byte[] original, String salt) {
199199
if (salt == null) {
200200
Random randomGenerator = new Random();
201201
int numSaltChars = SALT_CHARS.length;
202-
// Types casts fix two FindBugs report of RV_ABSOLUTE_VALUE_OF_RANDOM_INT.
203202
salt = "" + SALT_CHARS[randomGenerator.nextInt(numSaltChars)]
204203
+ SALT_CHARS[randomGenerator.nextInt(numSaltChars)];
205204
} else if (!salt.matches("^[" + B64.B64T + "]{2,}$")) {

0 commit comments

Comments
 (0)