This commit is contained in:
Andrea Cavalli 2023-03-28 01:03:53 +02:00
parent 4ff1eb0179
commit 25779e6c0c
1 changed files with 0 additions and 1 deletions

View File

@ -45,7 +45,6 @@ public class BufDataInput extends SafeDataInputStream {
@Override
public @NotNull String readUTF() {
var length = this.readUnsignedShort();
this.skipNBytes(length);
return this.in.readString(length, StandardCharsets.UTF_8);
}