You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by je...@apache.org on 2006/04/06 07:47:22 UTC

svn commit: r391907 - /xmlgraphics/fop/trunk/src/java/org/apache/fop/pdf/PDFOutputIntent.java

Author: jeremias
Date: Wed Apr  5 22:47:21 2006
New Revision: 391907

URL: http://svn.apache.org/viewcvs?rev=391907&view=rev
Log:
Fixed encoding issue.
Using Commons IO ByteArrayOutputStream.

Modified:
    xmlgraphics/fop/trunk/src/java/org/apache/fop/pdf/PDFOutputIntent.java

Modified: xmlgraphics/fop/trunk/src/java/org/apache/fop/pdf/PDFOutputIntent.java
URL: http://svn.apache.org/viewcvs/xmlgraphics/fop/trunk/src/java/org/apache/fop/pdf/PDFOutputIntent.java?rev=391907&r1=391906&r2=391907&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/pdf/PDFOutputIntent.java (original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/pdf/PDFOutputIntent.java Wed Apr  5 22:47:21 2006
@@ -18,9 +18,10 @@
 
 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 @@
     /**
      * Sets the destination ICC profile.
      * @param destOutputProfile An ICC profile stream defining the transformation from the PDF 
-     *                          document’s source colors to output device colorants.
+     *                          document's source colors to output device colorants.
      */
     public void setDestOutputProfile(PDFICCStream destOutputProfile) {
         this.destOutputProfile = destOutputProfile;



---------------------------------------------------------------------
To unsubscribe, e-mail: fop-commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: fop-commits-help@xmlgraphics.apache.org