Update of /cvsroot/nice/Nice/src/bossa/link
In directory sc8-pr-cvs1:/tmp/cvs-serv11803/F:/nice/src/bossa/link
Modified Files:
Dispatch.java
Log Message:
Limit the number of error message give by not matching values to avoid duplicates.
Index: Dispatch.java
===================================================================
RCS file: /cvsroot/nice/Nice/src/bossa/link/Dispatch.java,v
retrieving revision 1.58
retrieving revision 1.59
diff -C2 -d -r1.58 -r1.59
*** Dispatch.java 6 Jul 2003 18:12:17 -0000 1.58
--- Dispatch.java 16 Jul 2003 11:37:22 -0000 1.59
***************
*** 181,185 ****
else if (hasValues &&
testValues(method, tags, values, isValue, sortedAlternatives) )
! if (++nb_errors > 3)
break;
--- 181,185 ----
else if (hasValues &&
testValues(method, tags, values, isValue, sortedAlternatives) )
! if (++nb_errors > 0)
break;
|