Update of /cvsroot/mathlib/mathlib/Source/MathLib/Functions/Time
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv13148/Source/MathLib/Functions/Time
Modified Files:
toc.java
Log Message:
getValue() replaced by getValueRe()
Index: toc.java
===================================================================
RCS file: /cvsroot/mathlib/mathlib/Source/MathLib/Functions/Time/toc.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** toc.java 30 Dec 2006 17:58:20 -0000 1.6
--- toc.java 6 Jan 2007 09:34:45 -0000 1.7
***************
*** 33,37 ****
if (ticTok instanceof NumberToken)
{
! double start = ((NumberToken)ticTok).getValue();
return new NumberToken( (stop - start)/1000 );
}
--- 33,37 ----
if (ticTok instanceof NumberToken)
{
! double start = ((NumberToken)ticTok).getValueRe();
return new NumberToken( (stop - start)/1000 );
}
|