]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
CopyUtils is deprecated.
authorJeremias Maerki <jeremias@apache.org>
Sun, 21 Aug 2005 16:54:17 +0000 (16:54 +0000)
committerJeremias Maerki <jeremias@apache.org>
Sun, 21 Aug 2005 16:54:17 +0000 (16:54 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@234265 13f79535-47bb-0310-9956-ffa450edef68

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

index 509eca29e4e6870ce4902ab6556be7b2d7300aa8..411d8d71dcaf49c360aed1c9a1fc290bda646fbf 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 1999-2004 The Apache Software Foundation.
+ * Copyright 1999-2005 The Apache Software Foundation.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -25,7 +25,7 @@ import java.io.IOException;
 import java.io.File;
 
 //Commons
-import org.apache.commons.io.CopyUtils;
+import org.apache.commons.io.IOUtils;
 
 /**
  * StreamCache implementation that uses temporary files rather than heap.
@@ -92,7 +92,7 @@ public class TempFileStreamCache implements StreamCache {
 
         // don't need a buffer because streamCopy is buffered
         InputStream input = new java.io.FileInputStream(tempFile);
-        final long bytesCopied = CopyUtils.copy(input, out);
+        final long bytesCopied = IOUtils.copy(input, out);
         input.close();
         return (int)bytesCopied;
     }