We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a0f675 commit bbbb844Copy full SHA for bbbb844
src/main/java/scorekeep/Identifiers.java
@@ -1,13 +1,13 @@
1
-package scorekeep;
2
-
3
-import java.security.SecureRandom;
4
-import java.math.BigInteger;
5
6
-public class Identifiers {
7
- private static final SecureRandom secureRandom = new SecureRandom();
8
9
- public static String random() {
10
- return new BigInteger(40, secureRandom).toString(32).toUpperCase();
11
- }
12
+package scorekeep;
+
+import java.security.SecureRandom;
+import java.math.BigInteger;
+public class Identifiers {
+ private static final SecureRandom secureRandom = new SecureRandom();
+ public static String random() {
+ return new BigInteger(40, secureRandom).toString(32).toUpperCase();
+ }
13
}
0 commit comments