Skip to content

Commit

Permalink
PDFBOX-5664: make constructor protected
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1913223 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
lehmi committed Oct 23, 2023
1 parent 3c88d44 commit ef539cb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class PDFCloneUtility
*
* @param dest the destination PDF document that will receive the clones
*/
PDFCloneUtility(PDDocument dest)
protected PDFCloneUtility(PDDocument dest)
{
this.destination = dest;
}
Expand Down Expand Up @@ -102,7 +102,7 @@ public <TCOSBase extends COSBase> TCOSBase cloneForNewDocument(TCOSBase base) th
return (TCOSBase) retval;
}

COSBase cloneCOSBaseForNewDocument(COSBase base) throws IOException
private COSBase cloneCOSBaseForNewDocument(COSBase base) throws IOException
{
if (base instanceof COSObject)
{
Expand Down

0 comments on commit ef539cb

Please sign in to comment.