Update of /cvsroot/sunxacml/sunxacml/com/sun/xacml/attr
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15290/com/sun/xacml/attr
Modified Files:
StringAttribute.java
Log Message:
merged in small bug fixes from the 1.2 branch
Index: StringAttribute.java
===================================================================
RCS file: /cvsroot/sunxacml/sunxacml/com/sun/xacml/attr/StringAttribute.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** StringAttribute.java 17 Mar 2004 18:03:38 -0000 1.4
--- StringAttribute.java 17 Feb 2005 16:01:26 -0000 1.5
***************
*** 3,7 ****
* @(#)StringAttribute.java
*
! * Copyright 2003-2004 Sun Microsystems, Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
--- 3,7 ----
* @(#)StringAttribute.java
*
! * Copyright 2003-2005 Sun Microsystems, Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
***************
*** 118,122 ****
throw earlyException;
! this.value = value;
}
--- 118,125 ----
throw earlyException;
! if (value == null)
! this.value = "";
! else
! this.value = value;
}
|