This commit is contained in:
Muga Nishizawa
2010-09-11 12:12:16 +09:00
79 changed files with 2703 additions and 1427 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);
}