[Mathlib-commitlog] SF.net SVN: mathlib:[778] JMathLib/trunk/src/jmathlib/core/interpreter/ RootObj
Status: Beta
Brought to you by:
st_mueller
|
From: <st_...@us...> - 2009-01-25 21:02:25
|
Revision: 778
http://mathlib.svn.sourceforge.net/mathlib/?rev=778&view=rev
Author: st_mueller
Date: 2009-01-25 21:02:24 +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/RootObject.java
Modified: JMathLib/trunk/src/jmathlib/core/interpreter/RootObject.java
===================================================================
--- JMathLib/trunk/src/jmathlib/core/interpreter/RootObject.java 2009-01-25 21:01:47 UTC (rev 777)
+++ JMathLib/trunk/src/jmathlib/core/interpreter/RootObject.java 2009-01-25 21:02:24 UTC (rev 778)
@@ -11,6 +11,7 @@
jmathlib.core.constants.ErrorCodes,
jmathlib.core.constants.TokenConstants
{
+
/**
*
*/
@@ -18,14 +19,6 @@
{
}
- /**Convert the object into a string
- * @param
- */
- public String toString()
- {
- return "";
- }
-
/**Converts the object to a string based on the operand list
* @param operands = operands for the expression
*/
@@ -33,7 +26,6 @@
{
return "root object";
}
-
/**Duplicates the object by serialising it to a piped stream then reading it back into
* the new object
@@ -74,9 +66,9 @@
}
catch(java.io.IOException except)
{
+ except.printStackTrace();
ErrorLogger.debugLine("RootObject: IO exception");
ErrorLogger.debugLine(except.getMessage());
- //except.printStackTrace();
}
catch(java.lang.ClassNotFoundException except)
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|