Browse Source

Forgot to disable the writing down of the generated PDF files.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@392900 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-0_92-beta
Jeremias Maerki 18 years ago
parent
commit
45c2b95149
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      test/java/org/apache/fop/render/pdf/PDFAConformanceTestCase.java

+ 1
- 1
test/java/org/apache/fop/render/pdf/PDFAConformanceTestCase.java View File

@@ -73,7 +73,7 @@ public class PDFAConformanceTestCase extends TestCase {
Source src = new StreamSource(foFile);
SAXResult res = new SAXResult(fop.getDefaultHandler());
transformer.transform(src, res);
if (true) {
if (false) {
//Write to file for debugging
outFile = new File(foFile.getParentFile(), foFile.getName() + ".pdf");
FileUtils.writeByteArrayToFile(outFile, baout.toByteArray());

Loading…
Cancel
Save