]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Fixed encoding issue.
authorJeremias Maerki <jeremias@apache.org>
Thu, 6 Apr 2006 05:47:21 +0000 (05:47 +0000)
committerJeremias Maerki <jeremias@apache.org>
Thu, 6 Apr 2006 05:47:21 +0000 (05:47 +0000)
Using Commons IO ByteArrayOutputStream.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@391907 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/pdf/PDFOutputIntent.java

index a18f0e351001d7dc1e9dab5fdc31d29e0e766f28..4d509e24ade6954e9a7cbaa39c6a70a04a9abfc6 100644 (file)
 
 package org.apache.fop.pdf;
 
-import java.io.ByteArrayOutputStream;
 import java.io.IOException;
 
+import org.apache.commons.io.output.ByteArrayOutputStream;
+
 /**
  * Represents the OutputIntent dictionary.
  * @since PDF 1.4
@@ -118,7 +119,7 @@ public class PDFOutputIntent extends PDFObject {
     /**
      * Sets the destination ICC profile.
      * @param destOutputProfile An ICC profile stream defining the transformation from the PDF 
-     *                          document\92s source colors to output device colorants.
+     *                          document's source colors to output device colorants.
      */
     public void setDestOutputProfile(PDFICCStream destOutputProfile) {
         this.destOutputProfile = destOutputProfile;