We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b5e204 commit 6fd3d9dCopy full SHA for 6fd3d9d
1 file changed
src/main/java/org/glavo/nbt/io/NBTReader.java
@@ -311,7 +311,6 @@ public double readDouble() throws IOException {
311
return buffer.getDouble();
312
}
313
314
-
315
private static String getString(byte[] array, int offset, int length) {
316
String cached = CACHE.get(array, offset, length);
317
return cached != null ? cached : new String(array, offset, length, StandardCharsets.UTF_8);
0 commit comments