[Mathlib-commitlog] SF.net SVN: mathlib:[621] JMathLib/trunk/src/jmathlib/core/tokens/ ForOperatorT
Status: Beta
Brought to you by:
st_mueller
|
From: <st_...@us...> - 2009-01-05 15:06:50
|
Revision: 621
http://mathlib.svn.sourceforge.net/mathlib/?rev=621&view=rev
Author: st_mueller
Date: 2009-01-05 15:06:37 +0000 (Mon, 05 Jan 2009)
Log Message:
-----------
changed handling of global variables
Modified Paths:
--------------
JMathLib/trunk/src/jmathlib/core/tokens/ForOperatorToken.java
Modified: JMathLib/trunk/src/jmathlib/core/tokens/ForOperatorToken.java
===================================================================
--- JMathLib/trunk/src/jmathlib/core/tokens/ForOperatorToken.java 2009-01-05 15:06:26 UTC (rev 620)
+++ JMathLib/trunk/src/jmathlib/core/tokens/ForOperatorToken.java 2009-01-05 15:06:37 UTC (rev 621)
@@ -172,7 +172,7 @@
{
ErrorLogger.debugLine("vector for evaluating 1");
VariableToken variableToken = ((VariableToken)forExpression.getChild(0));
- Variable variable = getVariables().createVariable(variableToken.getName());
+ Variable variable = createVariable(variableToken.getName());
DoubleNumberToken vector = null;
Token child = forExpression.getChild(1);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|