Skip to content
This repository has been archived by the owner on Oct 5, 2021. It is now read-only.

Commit

Permalink
Refactored code.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.wso2.org/repos/wso2/trunk/wsf@67608 a5903396-d722-0410-b921-86c7d4935375
  • Loading branch information
heshan committed Jun 4, 2010
1 parent fdcb19e commit 459ac40
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ public static void main(String[] args) throws Exception{
ConfigurationContextFactory.createConfigurationContextFromFileSystem(repolocation, axis2XmlFilePath);
SimpleHTTPServer server = new SimpleHTTPServer(configCtx ,8080);
server.start();
System.out.println(" simpleHTTP server started !");

System.out.println(" simpleHTTP server started !");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,9 @@ public static Object invoke(String method, String reader, Object args[]) {
//PyFloat, PyInteger, PyLong , PyString, PyList, PyDictionary, PyTuple, PyArray, PyComplex,
String s4 = "" + method + "(" + str + ")";
if (log.isDebugEnabled()) {
log.debug("String to be evaluated -->" + s4);
log.debug("String to be evaluated : " + s4);
}
PyObject retObj = interp.eval(s4);
return retObj;
return interp.eval(s4);
}


Expand Down

0 comments on commit 459ac40

Please sign in to comment.