Update of /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv26794/b7_Scripts/WalkForwardTesting/WalkForwardLag
Modified Files:
WFLagCandidates.cs
Log Message:
Minor fixing applied to an exception message
Index: WFLagCandidates.cs
===================================================================
RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag/WFLagCandidates.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** WFLagCandidates.cs 8 Oct 2006 16:10:45 -0000 1.5
--- WFLagCandidates.cs 11 Jun 2007 17:50:47 -0000 1.6
***************
*** 65,69 ****
"two rows. It has less than two rows!" );
if ( firstQuoteDate >= lastQuoteDate )
! throw new Exception( "firstQuoteDate has to be less than" +
"lastQuoteDate!" );
}
--- 65,69 ----
"two rows. It has less than two rows!" );
if ( firstQuoteDate >= lastQuoteDate )
! throw new Exception( "firstQuoteDate has to be less than " +
"lastQuoteDate!" );
}
|