You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by Ben Zeigler <jz...@cncn.com> on 2000/08/21 23:03:38 UTC

bug found in ApplyXSL.java

I've been working on a servlet chaining application that uses
DefaultApplyXSl, and I think I found a bug.  On line 37 of the method
process in ApplyXSL.java, the line reads:

if (xmlSource != null)

But i think it should read

if (xmlSource == null)

They way it is now, if the xmlSource is NOT null, it goes through the
error code, and in the process, screws up my servlet chain by reading
from the completed inputstream.Add it to the list, or something :P

-Ben Zeigler