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/04/27 18:23:21 UTC

svn commit: r1741286 - /pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/multipdf/PDFCloneUtility.java

Author: tilman
Date: Wed Apr 27 16:23:21 2016
New Revision: 1741286

URL: http://svn.apache.org/viewvc?rev=1741286&view=rev
Log:
PDFBOX-3280: make class public again, to allow cloning in importPage()

Modified:
    pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/multipdf/PDFCloneUtility.java

Modified: pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/multipdf/PDFCloneUtility.java
URL: http://svn.apache.org/viewvc/pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/multipdf/PDFCloneUtility.java?rev=1741286&r1=1741285&r2=1741286&view=diff
==============================================================================
--- pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/multipdf/PDFCloneUtility.java (original)
+++ pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/multipdf/PDFCloneUtility.java Wed Apr 27 16:23:21 2016
@@ -36,7 +36,7 @@ import org.apache.pdfbox.pdmodel.common.
  * Utility class used to clone PDF objects. It keeps track of objects it has already cloned.
  *
  */
-class PDFCloneUtility
+public class PDFCloneUtility
 {
 
     private final PDDocument destination;
@@ -46,7 +46,7 @@ class PDFCloneUtility
      * Creates a new instance for the given target document.
      * @param dest the destination PDF document that will receive the clones
      */
-    PDFCloneUtility(PDDocument dest)
+    public PDFCloneUtility(PDDocument dest)
     {
         this.destination = dest;
     }