Merge branch 'master' of github.com:msgpack/msgpack

This commit is contained in:
frsyuki 2010-04-04 21:40:19 +09:00
commit 88c77b793f
3 changed files with 2 additions and 3 deletions

View File

@ -13,6 +13,6 @@
</javac>
</target>
<target name="jar" depends="compile">
<jar jarfile="dist/msgpack-0.0.0.jar" basedir="build" />
<jar jarfile="dist/msgpack-0.0.1.jar" basedir="build" />
</target>
</project>

View File

@ -20,7 +20,6 @@ package org.msgpack;
import java.io.OutputStream;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.charset.Charset;
import java.util.List;
import java.util.Map;

View File

@ -385,11 +385,11 @@ public class UnpackerImpl {
obj = new Object[count*2];
if(count == 0) { break _push; } // FIXME check IMapSchema
//System.out.println("fixmap count:"+count);
++top;
stack_obj[top] = top_obj;
stack_ct[top] = top_ct;
stack_count[top] = top_count;
stack_schema[top] = top_schema;
++top;
top_obj = obj;
top_ct = CT_MAP_KEY;
top_count = count;