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 2005/09/05 21:20:36 UTC

svn commit: r278816 - /xmlgraphics/fop/trunk/src/java/org/apache/fop/render/ps/PSFontUtils.java

Author: jeremias
Date: Mon Sep  5 12:20:32 2005
New Revision: 278816

URL: http://svn.apache.org/viewcvs?rev=278816&view=rev
Log:
Fixes a compile error. I used a method from a SVN checkout of Commons IO. Sorry.

Modified:
    xmlgraphics/fop/trunk/src/java/org/apache/fop/render/ps/PSFontUtils.java

Modified: xmlgraphics/fop/trunk/src/java/org/apache/fop/render/ps/PSFontUtils.java
URL: http://svn.apache.org/viewcvs/xmlgraphics/fop/trunk/src/java/org/apache/fop/render/ps/PSFontUtils.java?rev=278816&r1=278815&r2=278816&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/render/ps/PSFontUtils.java (original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/render/ps/PSFontUtils.java Mon Sep  5 12:20:32 2005
@@ -29,8 +29,8 @@
 import javax.xml.transform.Source;
 import javax.xml.transform.stream.StreamSource;
 
+import org.apache.commons.io.CopyUtils;
 import org.apache.commons.io.EndianUtils;
-import org.apache.commons.io.IOUtils;
 import org.apache.fop.fonts.CustomFont;
 import org.apache.fop.fonts.FontInfo;
 import org.apache.fop.fonts.FontType;
@@ -163,7 +163,7 @@
 
                     SubInputStream sin = new SubInputStream(in, dataSegLen);
                     ASCIIHexOutputStream hexOut = new ASCIIHexOutputStream(gen.getOutputStream());
-                    IOUtils.copy(sin, hexOut);
+                    CopyUtils.copy(sin, hexOut);
                     gen.newLine();
                     break;
                 case 3: //EOF



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