Need to reset our byte array output stream when we're done with it.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@298 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-08-21 21:16:53 +00:00
parent eb13ed5cc1
commit c8e6606056
@@ -1,5 +1,5 @@
//
// $Id: EntryUtil.java,v 1.1 2001/08/16 03:45:43 mdb Exp $
// $Id: EntryUtil.java,v 1.2 2001/08/21 21:16:53 mdb Exp $
package com.threerings.cocktail.cher.dobj.io;
@@ -32,6 +32,7 @@ public class ElementUtil
_dout.flush();
out.writeInt(_bout.size());
_bout.writeTo(out);
_bout.reset();
}
/**