diff options
Diffstat (limited to 'test/java/org/apache/fop/visual/BitmapProducerPS.java')
-rw-r--r-- | test/java/org/apache/fop/visual/BitmapProducerPS.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/java/org/apache/fop/visual/BitmapProducerPS.java b/test/java/org/apache/fop/visual/BitmapProducerPS.java index d711dad16..1bbdba891 100644 --- a/test/java/org/apache/fop/visual/BitmapProducerPS.java +++ b/test/java/org/apache/fop/visual/BitmapProducerPS.java @@ -19,6 +19,8 @@ package org.apache.fop.visual; +import java.net.URI; + import org.apache.fop.apps.MimeConstants; /** @@ -32,7 +34,8 @@ public class BitmapProducerPS extends AbstractPSPDFBitmapProducer { /** * Default constructor. */ - public BitmapProducerPS() { + public BitmapProducerPS(URI baseUri) { + super(baseUri); this.targetFormat = MimeConstants.MIME_POSTSCRIPT; } |