Update of /cvsroot/sunxacml/sunxacml/com/sun/xacml/cond
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22631/com/sun/xacml/cond
Modified Files:
Tag: branch_1_2
HigherOrderFunction.java
Log Message:
fixed a bug in all-of-all noted by allenp1
Index: HigherOrderFunction.java
===================================================================
RCS file: /cvsroot/sunxacml/sunxacml/com/sun/xacml/cond/HigherOrderFunction.java,v
retrieving revision 1.7.2.1
retrieving revision 1.7.2.2
diff -C2 -d -r1.7.2.1 -r1.7.2.2
*** HigherOrderFunction.java 16 Dec 2004 18:52:52 -0000 1.7.2.1
--- HigherOrderFunction.java 14 Feb 2006 22:41:43 -0000 1.7.2.2
***************
*** 3,7 ****
* @(#)HigherOrderFunction.java
*
! * Copyright 2003-2004 Sun Microsystems, Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
--- 3,7 ----
* @(#)HigherOrderFunction.java
*
! * Copyright 2003-2006 Sun Microsystems, Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
***************
*** 342,347 ****
while (it.hasNext()) {
AttributeValue value = (AttributeValue)(it.next());
! result = all((AttributeValue)(it.next()), bag, function,
! context);
if (result.indeterminate())
--- 342,346 ----
while (it.hasNext()) {
AttributeValue value = (AttributeValue)(it.next());
! result = all(value, bag, function, context);
if (result.indeterminate())
|