Browse Source

Forgot to remove the old ";mode=painter" work-around.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@747752 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-1_0
Jeremias Maerki 15 years ago
parent
commit
e5071d4577

+ 2
- 2
examples/embedding/java/embedding/intermediate/ExampleConcat.java View File

@@ -92,7 +92,7 @@ public class ExampleConcat {
//Create an instance of the target document handler so the IFSerializer
//can use its font setup
IFDocumentHandler targetHandler = userAgent.getRendererFactory().createDocumentHandler(
userAgent, MimeConstants.MIME_PDF + ";mode=painter");
userAgent, MimeConstants.MIME_PDF);

//Create the IFSerializer to write the intermediate format
IFSerializer ifSerializer = new IFSerializer();
@@ -150,7 +150,7 @@ public class ExampleConcat {
FOUserAgent userAgent = fopFactory.newFOUserAgent();

//Setup target handler
String mime = MimeConstants.MIME_PDF + ";mode=painter";
String mime = MimeConstants.MIME_PDF;
IFDocumentHandler targetHandler = fopFactory.getRendererFactory().createDocumentHandler(
userAgent, mime);


+ 1
- 1
examples/embedding/java/embedding/intermediate/ExampleStamp.java View File

@@ -73,7 +73,7 @@ public class ExampleStamp {
FOUserAgent userAgent = fopFactory.newFOUserAgent();

//Setup target handler
String mime = MimeConstants.MIME_PDF + ";mode=painter";
String mime = MimeConstants.MIME_PDF;
IFDocumentHandler targetHandler = fopFactory.getRendererFactory().createDocumentHandler(
userAgent, mime);


+ 1
- 1
test/java/org/apache/fop/intermediate/IFParserTestCase.java View File

@@ -88,7 +88,7 @@ public class IFParserTestCase extends AbstractIntermediateTestCase {

/** {@inheritDoc} */
protected String getTargetMIME() {
return MimeConstants.MIME_PDF + ";mode=painter";
return MimeConstants.MIME_PDF;
}

/** {@inheritDoc} */

Loading…
Cancel
Save