1
0
mirror of https://github.com/TeamNewPipe/nanojson synced 2025-10-06 00:13:15 +02:00

Revert "Fix Checkstyle errors"

This reverts commit b2c9c6f914.
This commit is contained in:
Stypox
2025-10-03 12:05:47 +02:00
parent 9718d33f01
commit b52e21aaaa
2 changed files with 3 additions and 4 deletions

View File

@@ -20,8 +20,7 @@
</module>
<module name="LineLength">
<property name="max" value="120" />
<property name="tabWidth" value="4" />
<property name="max" value="150" />
</module>
<!-- If you set the basedir property below, then all reported file names

View File

@@ -522,8 +522,8 @@ final class JsonTokener {
} else if (digit >= 'a' && digit <= 'f') {
escaped |= (digit - 'a') + 10;
} else {
throw createParseException(null, "Expected unicode hex escape character: "
+ (char)digit + " (" + digit + ")", false);
throw createParseException(null, "Expected unicode hex escape character: " + (char)digit
+ " (" + digit + ")", false);
}
}