Revision: 447 http://cishell.svn.sourceforge.net/cishell/?rev=447&view=rev Author: teakettle22 Date: 2007-07-30 11:00:47 -0700 (Mon, 30 Jul 2007) Log Message: ----------- corrected return types again. Modified Paths: -------------- trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/converter/graph/ConverterGraph.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-07-30 17:58:27 UTC (rev 446) +++ trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/converter/graph/ConverterGraph.java 2007-07-30 18:00:47 UTC (rev 447) @@ -221,12 +221,12 @@ return (ConverterPath)this.fileExtensionCompareConverters.get(s); } - public ServiceReference[] getComparePaths(){ + public ConverterPath[] getComparePaths(){ String[] fileExtensions = (String[])this.fileExtensionCompareConverters.keySet().toArray(); ArrayList graphs = new ArrayList(); for(int i = 0; i < fileExtensions.length; i++){ graphs.add(getComparePath(fileExtensions[i])); } - return (ServiceReference[])graphs.toArray(); + return (ConverterPath[])graphs.toArray(); } } \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |