cpp: updates README.md

This commit is contained in:
frsyuki
2010-08-29 18:24:32 +09:00
parent c44c9ab74d
commit 3c75361e5a
3 changed files with 31 additions and 38 deletions

View File

@@ -24,9 +24,7 @@ public class TestMessageUnpackable {
Image dst = new Image();
ByteArrayInputStream in = new ByteArrayInputStream(out.toByteArray());
Unpacker pac = new Unpacker(in);
dst.messageUnpack(pac);
dst.messageUnpack(new Unpacker(in));
assertEquals(src, dst);
}