mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 18:41:13 +00:00
code hint fixes
This commit is contained in:
+4
-1
@@ -67,7 +67,10 @@ public class MetaData {
|
||||
requestSize = cis.readInt32();
|
||||
infoSize = cis.readInt32();
|
||||
byte req[] = new byte[(int) requestSize];
|
||||
cis.read(req);
|
||||
if (cis.read(req) != req.length) {
|
||||
throw new IOException();
|
||||
}
|
||||
|
||||
request = new String(req, 0, (int) requestSize - 1/*Ends with char 0*/);
|
||||
byte res[] = new byte[(int) infoSize];
|
||||
cis.read(res);
|
||||
|
||||
Reference in New Issue
Block a user