From: <mwl...@us...> - 2007-08-06 20:38:10
|
Revision: 464 http://cishell.svn.sourceforge.net/cishell/?rev=464&view=rev Author: mwlinnem Date: 2007-08-06 13:37:40 -0700 (Mon, 06 Aug 2007) Log Message: ----------- Fixed typo. Modified Paths: -------------- trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/converter/graph/ConverterGraph.java trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/converter/graph/ConverterPath.java Modified: trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/converter/graph/ConverterGraph.java =================================================================== --- trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/converter/graph/ConverterGraph.java 2007-08-06 20:17:28 UTC (rev 463) +++ trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/converter/graph/ConverterGraph.java 2007-08-06 20:37:40 UTC (rev 464) @@ -76,7 +76,7 @@ } while(!refs.isEmpty()){ ConverterPath p = new ConverterPath(path); - p.addAlgoritm((ServiceReference)refs.get(0)); + p.addAlgorithm((ServiceReference)refs.get(0)); refs.remove(0); createPaths((ArrayList)this.inDataToAlgorithm.get(p.getOutData()), p, p.getOutData()); Modified: trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/converter/graph/ConverterPath.java =================================================================== --- trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/converter/graph/ConverterPath.java 2007-08-06 20:17:28 UTC (rev 463) +++ trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/converter/graph/ConverterPath.java 2007-08-06 20:37:40 UTC (rev 464) @@ -30,7 +30,7 @@ this.out_data = s; } - public boolean addAlgoritm(ServiceReference sr){ + public boolean addAlgorithm(ServiceReference sr){ boolean val = true; if(path.contains(sr)){ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |