[Quantproject-developers] QuantProject/b1_ADT/Collections IntArrayManager.cs, 1.1, 1.2
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2007-11-04 19:11:43
|
Update of /cvsroot/quantproject/QuantProject/b1_ADT/Collections In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv24247/b1_ADT/Collections Modified Files: IntArrayManager.cs Log Message: Bug fixed in the SubArray pubic static method: it should work fine now Index: IntArrayManager.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b1_ADT/Collections/IntArrayManager.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IntArrayManager.cs 7 Oct 2007 10:25:10 -0000 1.1 --- IntArrayManager.cs 4 Nov 2007 19:11:38 -0000 1.2 *************** *** 71,75 **** subArray[ i ] = arrayOfInt[ currentPosition ]; } ! return arrayOfInt; } #endregion SubArray --- 71,75 ---- subArray[ i ] = arrayOfInt[ currentPosition ]; } ! return subArray; } #endregion SubArray |