DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=13851>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=13851

java.lang.StackOverflowError in XString.equals()





------- Additional Comments From [EMAIL PROTECTED]  2004-04-15 19:24 -------
I ran into this bug doing XSLT processing both in Cocoon and in Ant. My fix was to 
remove the 
"optimization" in XString.equals so that it reads:

public boolean equals(XMLString obj2)
{
      return str().equals(obj2.toString());
}

This was particularly nasty for me because Apple includes this class in 
/System/Library/Frameworks/
JavaVM.framework/Versions/1.4.2/Classes/classes.jar, which is in the baseclasspath and 
is tricky to 
override.

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

Reply via email to