From: <mwl...@us...> - 2008-03-25 20:25:21
|
Revision: 713 http://cishell.svn.sourceforge.net/cishell/?rev=713&view=rev Author: mwlinnem Date: 2008-03-25 13:22:30 -0700 (Tue, 25 Mar 2008) Log Message: ----------- Fixed for CIShell 1.0. Modified Paths: -------------- trunk/templates/org.cishell.templates.jythonrunner/src/org/cishell/templates/jythonrunner/JythonAlgorithmFactory.java trunk/templates/org.cishell.templates.jythonrunner/src/org/cishell/templates/jythonrunner/JythonResultFormatter.java Modified: trunk/templates/org.cishell.templates.jythonrunner/src/org/cishell/templates/jythonrunner/JythonAlgorithmFactory.java =================================================================== --- trunk/templates/org.cishell.templates.jythonrunner/src/org/cishell/templates/jythonrunner/JythonAlgorithmFactory.java 2008-03-25 19:59:25 UTC (rev 712) +++ trunk/templates/org.cishell.templates.jythonrunner/src/org/cishell/templates/jythonrunner/JythonAlgorithmFactory.java 2008-03-25 20:22:30 UTC (rev 713) @@ -29,11 +29,6 @@ this.properties = ctxt.getProperties(); } - - protected void deactivate(ComponentContext ctxt) { - provider = null; - } - public Algorithm createAlgorithm(Data[] data, Dictionary parameters, CIShellContext context) { return new JythonRunnerAlgorithm(data, parameters, context, Modified: trunk/templates/org.cishell.templates.jythonrunner/src/org/cishell/templates/jythonrunner/JythonResultFormatter.java =================================================================== --- trunk/templates/org.cishell.templates.jythonrunner/src/org/cishell/templates/jythonrunner/JythonResultFormatter.java 2008-03-25 19:59:25 UTC (rev 712) +++ trunk/templates/org.cishell.templates.jythonrunner/src/org/cishell/templates/jythonrunner/JythonResultFormatter.java 2008-03-25 20:22:30 UTC (rev 713) @@ -53,7 +53,7 @@ List results = new ArrayList(); for (int ii = 0; ii < data.size(); ii++) { Data result = ((Data) data.get(ii)); - Dictionary metadataHolder = result.getMetaData(); + Dictionary metadataHolder = result.getMetadata(); String dataLabel = getResultLabel(properties, ii); metadataHolder.put(DataProperty.LABEL, dataLabel); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |