Update of /cvsroot/trove4j/trove
In directory usw-pr-cvs1:/tmp/cvs-serv32467
Modified Files:
build.xml
Log Message:
bug fixes for TIntArrayList: clone is now a correct deep clone.
toNativeArray no longer raises an arrayindexoutofboundsexception when used to
copy an array slice into a small native array.
enhancements:
TIntArrayList now serializes only the data in the list, not the extra capacity.
Added package private SerializationProcedure class that replaces the various
WriteProcedure inner classes that were used in a bunch of places. This
eliminates several class files from the trove jar, since SerializationProcedure
does the job of writing data on an ObjectOutputStream for all of the collection
types.
Index: build.xml
===================================================================
RCS file: /cvsroot/trove4j/trove/build.xml,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** build.xml 19 Apr 2002 03:31:58 -0000 1.19
--- build.xml 8 Jul 2002 00:51:20 -0000 1.20
***************
*** 10,14 ****
<property name="Name" value="Trove for Java"/>
<property name="name" value="trove"/>
! <property name="version" value="0.1.5"/>
<property name="year" value="2001-2002"/>
--- 10,14 ----
<property name="Name" value="Trove for Java"/>
<property name="name" value="trove"/>
! <property name="version" value="0.1.6"/>
<property name="year" value="2001-2002"/>
|