Commit 03569a40 by Keith Seitz

Fix typo in initial commit.

From-SVN: r100464
parent 33323579
...@@ -187,7 +187,7 @@ public abstract class JdwpPacket ...@@ -187,7 +187,7 @@ public abstract class JdwpPacket
{ {
int i = 0; int i = 0;
int length = ((bytes[i++] & 0xff) << 24 | (bytes[i++] & 0xff) << 16 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; int id = 0;
byte flags = 0; byte flags = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment