diff options
Diffstat (limited to 'NET/worlds/network/ServerInputStream.java')
| -rw-r--r-- | NET/worlds/network/ServerInputStream.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/NET/worlds/network/ServerInputStream.java b/NET/worlds/network/ServerInputStream.java index bfca04e..74ba8bc 100644 --- a/NET/worlds/network/ServerInputStream.java +++ b/NET/worlds/network/ServerInputStream.java @@ -231,7 +231,7 @@ public class ServerInputStream extends FilterInputStream { throw new UTFDataFormatException(); } - int char2 = this.readUnsignedByte(); + char2 = this.readUnsignedByte(); int char3 = this.readUnsignedByte(); if ((char2 & 192) != 128 || (char3 & 192) != 128) { throw new UTFDataFormatException(); |