Skip to content

Commit

Permalink
Fix checkstyle issue
Browse files Browse the repository at this point in the history
refs #5
  • Loading branch information
patrickfav committed Jul 16, 2018
1 parent 273a9ae commit 6f35e79
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -2,7 +2,10 @@

import at.favre.lib.crypto.bcrypt.BCrypt;

public class Cli {
public final class Cli {
private Cli() {
}

public static void main(String[] args) {
System.out.println(BCrypt.withDefaults().hashToString(4, "asdasd".toCharArray()));
}
Expand Down

0 comments on commit 6f35e79

Please sign in to comment.