Fix typo in initial commit.

From-SVN: r100464
This commit is contained in:
Keith Seitz 2005-06-01 20:08:39 +00:00
parent 3332357987
commit 03569a4047

View File

@ -187,7 +187,7 @@ public abstract class JdwpPacket
{
int i = 0;
int length = ((bytes[i++] & 0xff) << 24 | (bytes[i++] & 0xff) << 16
| (bytes[i++] & 0xff) << 8 | (bytes[i++] 0xff));
| (bytes[i++] & 0xff) << 8 | (bytes[i++] & 0xff));
int id = 0;
byte flags = 0;