Revision: 454
http://cishell.svn.sourceforge.net/cishell/?rev=454&view=rev
Author: teakettle22
Date: 2007-08-01 12:12:45 -0700 (Wed, 01 Aug 2007)
Log Message:
-----------
Modified Paths:
--------------
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/ConverterPath.java
===================================================================
--- trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/converter/graph/ConverterPath.java 2007-08-01 19:12:16 UTC (rev 453)
+++ trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/converter/graph/ConverterPath.java 2007-08-01 19:12:45 UTC (rev 454)
@@ -32,13 +32,13 @@
public boolean addAlgoritm(ServiceReference sr){
boolean val = true;
- //System.out.println(this.in_data + " " + this.out_data);
+
if(path.contains(sr)){
System.out.println("Path already contains " + sr.getProperty("service.pid"));
- //this.setOutData(sr.getProperty("out_data").toString());
+
return false;
}
- //System.out.println("Adding: " + sr.getProperty("service.pid"));
+
path.add(sr);
this.setOutData(sr.getProperty("out_data").toString());
return val;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|