I have a bit of a problem with a change to the XMLRenderer.
On line 203 it has:
+ area.getGeneratedBy() + "\"");
This means that every new run of fop with this renderer will produce a
different result (as it puts in the object name which has memory address
values). Thereby ruining diffs.
can it be changed to do this instead?:
+ area.getGeneratedBy().getClass() + "\"");
what is the purpose of this bit of code?
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]