Skip to content

Commit

Permalink
Fixes for checkstyle-10.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ao-apps committed Mar 12, 2024
1 parent 069eef7 commit fbea9fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/aoapps/security/UnixCrypt.java
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ public abstract class UnixCrypt {
// ====================================

static {
byte[] perm = new byte[64];
byte[] temp = new byte[64];
final byte[] perm = new byte[64];
final byte[] temp = new byte[64];

// inverse table.
for (int i = 0; i < A64TOI.length; i++) {
Expand Down

0 comments on commit fbea9fc

Please sign in to comment.