[Sunxacml-commit] sunxacml/com/sun/xacml/cond HigherOrderFunction.java,1.10,1.11
Brought to you by:
farrukh_najmi,
sethp
|
From: Seth P. <se...@us...> - 2006-02-14 22:44:52
|
Update of /cvsroot/sunxacml/sunxacml/com/sun/xacml/cond In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23496/com/sun/xacml/cond Modified Files: 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.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** HigherOrderFunction.java 5 Dec 2005 23:34:51 -0000 1.10 --- HigherOrderFunction.java 14 Feb 2006 22:44:44 -0000 1.11 *************** *** 3,7 **** * @(#)HigherOrderFunction.java * ! * Copyright 2003-2005 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 *************** *** 372,377 **** while (it.hasNext()) { AttributeValue value = (AttributeValue)(it.next()); ! result = all((AttributeValue)(it.next()), bag, function, ! context); if (result.indeterminate()) --- 372,376 ---- while (it.hasNext()) { AttributeValue value = (AttributeValue)(it.next()); ! result = all(value, bag, function, context); if (result.indeterminate()) |