[Mathlib-commitlog] SF.net SVN: mathlib:[779] JMathLib/trunk/src/jmathlib/core/interpreter/ Context
Status: Beta
Brought to you by:
st_mueller
|
From: <st_...@us...> - 2009-01-25 21:03:26
|
Revision: 779
http://mathlib.svn.sourceforge.net/mathlib/?rev=779&view=rev
Author: st_mueller
Date: 2009-01-25 21:03:22 +0000 (Sun, 25 Jan 2009)
Log Message:
-----------
changed signature of evaluate(Token[] operands)
to
evaluate(Token[] operands, GlobalValues globals)
Modified Paths:
--------------
JMathLib/trunk/src/jmathlib/core/interpreter/ContextList.java
Modified: JMathLib/trunk/src/jmathlib/core/interpreter/ContextList.java
===================================================================
--- JMathLib/trunk/src/jmathlib/core/interpreter/ContextList.java 2009-01-25 21:02:24 UTC (rev 778)
+++ JMathLib/trunk/src/jmathlib/core/interpreter/ContextList.java 2009-01-25 21:03:22 UTC (rev 779)
@@ -99,7 +99,7 @@
{
// variable is local only
// return data from current context
- return localContext.getVariables().getVariable(name);
+ return var;
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|