org.apache.xalan.xsltc.compilerAttributeSet parseContents does this:

if ((_name == null) || (_name.equals(EMPTYSTRING))) {

as _name is a QName, and QName equals uses ==

this if statement is the same as

if (_name == null)

which is probably not what is wanted.

Probably want

if ((_name == null) || (_name.getStringRep().equals(EMPTYSTRING))) {


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to