DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27009>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27009 Empty string as an attribute value. ------- Additional Comments From [EMAIL PROTECTED] 2004-02-17 18:03 ------- We call endElement if value of an attribute is an empty string. (see org.apache.xalan.xsltc.compiler.Copy). This is a common problem in our code for both the interpretive and the XSLTC. In a lot of palace we cannot distinguish between NONE and empty string e.g. in class SyntaxTreeNode protected String getAttribute(String qname) { if (_attributes == null) { return EMPTYSTRING; } …. I think a serious clean-up should be done
