2006/unicorn/org/w3c/unicorn UnicornCall.java,1.14,1.15

Update of /sources/public/2006/unicorn/org/w3c/unicorn
In directory hutz:/tmp/cvs-serv13678/org/w3c/unicorn

Modified Files:
	UnicornCall.java 
Log Message:
Final UnicornCall model

Index: UnicornCall.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/UnicornCall.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- UnicornCall.java	1 Sep 2008 08:36:21 -0000	1.14
+++ UnicornCall.java	2 Sep 2008 07:27:15 -0000	1.15
@@ -243,10 +243,10 @@
 					+ ".");
 		}
 		boolean conditionOK=true;
-		//FIXME boolean to manage the OR in the conditions, if the donc is false we change the boolean to false , if not we don't care
+		//boolean to manage the OR in the conditions, if the cond is false we change the boolean to false , if not we don't care
 		//that will simulate the OR
 		for(TLTCond cond:ifs.getCondArray()){
-				this.checkCond(cond);
+				if(!this.checkCond(cond))conditionOK=false;
 			
 		}
 		return conditionOK;

Received on Tuesday, 2 September 2008 07:27:52 UTC