From: <cg...@us...> - 2009-07-26 16:35:01
|
Revision: 6591 http://jython.svn.sourceforge.net/jython/?rev=6591&view=rev Author: cgroves Date: 2009-07-26 16:34:54 +0000 (Sun, 26 Jul 2009) Log Message: ----------- Me wrap you long line. Modified Paths: -------------- trunk/jython/src/org/python/jsr223/PyScriptEngineFactory.java Modified: trunk/jython/src/org/python/jsr223/PyScriptEngineFactory.java =================================================================== --- trunk/jython/src/org/python/jsr223/PyScriptEngineFactory.java 2009-07-26 16:32:05 UTC (rev 6590) +++ trunk/jython/src/org/python/jsr223/PyScriptEngineFactory.java 2009-07-26 16:34:54 UTC (rev 6591) @@ -9,13 +9,14 @@ import org.python.core.Py; public class PyScriptEngineFactory implements ScriptEngineFactory { - + public String getEngineName() { return "jython"; } public String getEngineVersion() { - return String.format("%s.%s.%s", Version.PY_MAJOR_VERSION, Version.PY_MINOR_VERSION, Version.PY_MICRO_VERSION); + return String.format("%s.%s.%s", Version.PY_MAJOR_VERSION, Version.PY_MINOR_VERSION, + Version.PY_MICRO_VERSION); } public List<String> getExtensions() { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |