Author: lahiru
Date: Fri Sep 21 22:04:07 2012
New Revision: 1388702

URL: http://svn.apache.org/viewvc?rev=1388702&view=rev
Log:
fiixng interpreter issue.

Modified:
    
airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/interpretor/WorkflowInterpreter.java

Modified: 
airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/interpretor/WorkflowInterpreter.java
URL: 
http://svn.apache.org/viewvc/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/interpretor/WorkflowInterpreter.java?rev=1388702&r1=1388701&r2=1388702&view=diff
==============================================================================
--- 
airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/interpretor/WorkflowInterpreter.java
 (original)
+++ 
airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/interpretor/WorkflowInterpreter.java
 Fri Sep 21 22:04:07 2012
@@ -1496,7 +1496,7 @@ public class WorkflowInterpreter {
                                                // whether the control port is 
done
                                                // FIXME I changed the "||" to 
a "&&" in the following since thats the only this 
                                                // that makes sense and if 
anyone found a scenario it should be otherwise pls fix
-                                                               && 
((ControlPort) edge.getFromPort()).isConditionMet());
+                                                               || 
((ControlPort) edge.getFromPort()).isConditionMet());
                                        }
                                }
 


Reply via email to