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 c0abd85 commit d4644beCopy full SHA for d4644be
src/main/java/com/github/underscore/Base32.java
@@ -27,7 +27,6 @@
27
import java.util.Map;
28
29
public final class Base32 {
30
-
31
private static final Base32 INSTANCE = new Base32();
32
private final char[] digits = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdef".toCharArray();
33
private final int mask = digits.length - 1;
src/main/java/com/github/underscore/Json.java
@@ -32,7 +32,6 @@
@SuppressWarnings({"java:S3740", "java:S3776"})
34
public final class Json {
35
36
private static final int PARSE_MAX_DEPTH = 10_000;
37
38
private Json() {}
0 commit comments