You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by ti...@apache.org on 2016/02/18 19:48:36 UTC

svn commit: r1731113 - /pdfbox/branches/1.8/pdfbox/src/main/java/org/apache/pdfbox/io/ASCII85OutputStream.java

Author: tilman
Date: Thu Feb 18 18:48:35 2016
New Revision: 1731113

URL: http://svn.apache.org/viewvc?rev=1731113&view=rev
Log:
PDFBOX-3237: write correct terminator string, as reported by Jeff Skaistis

Modified:
    pdfbox/branches/1.8/pdfbox/src/main/java/org/apache/pdfbox/io/ASCII85OutputStream.java

Modified: pdfbox/branches/1.8/pdfbox/src/main/java/org/apache/pdfbox/io/ASCII85OutputStream.java
URL: http://svn.apache.org/viewvc/pdfbox/branches/1.8/pdfbox/src/main/java/org/apache/pdfbox/io/ASCII85OutputStream.java?rev=1731113&r1=1731112&r2=1731113&view=diff
==============================================================================
--- pdfbox/branches/1.8/pdfbox/src/main/java/org/apache/pdfbox/io/ASCII85OutputStream.java (original)
+++ pdfbox/branches/1.8/pdfbox/src/main/java/org/apache/pdfbox/io/ASCII85OutputStream.java Thu Feb 18 18:48:35 2016
@@ -215,6 +215,7 @@ public class ASCII85OutputStream extends
             out.write(NEWLINE);
         }
         out.write(terminator);
+        out.write('>');
         out.write(NEWLINE);
         count = 0;
         lineBreak = maxline;