set to null in the default commandline usage.
PR:
Obtained from:
Submitted by:
Reviewed by:
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194186
13f79535-47bb-0310-9956-
ffa450edef68
/* create a PDFInfo with the next object number and add to
list of objects */
PDFInfo pdfInfo = new PDFInfo(++this.objectcount);
- this.objects.addElement(pdfInfo);
+ // set the default producer
+ pdfInfo.setProducer(org.apache.fop.apps.Version.getVersion());
+ this.objects.addElement(pdfInfo);
return pdfInfo;
}