Skip to content

Commit

Permalink
LDEV-3047 remove icepdf
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Sep 14, 2023
1 parent bf83a30 commit 37a9b1c
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 99 deletions.
Binary file removed source/java/libs/core-3.1.0.3.jar
Binary file not shown.
5 changes: 2 additions & 3 deletions source/java/src/org/lucee/extension/pdf/PDFDocument.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@

import javax.servlet.http.HttpServletRequest;

import org.icepdf.core.exceptions.PDFException;
import org.lucee.extension.pdf.pd4ml.PD4MLPDFDocument;
import org.lucee.extension.pdf.util.Margin;
import org.lucee.extension.pdf.util.XMLUtil;
Expand Down Expand Up @@ -329,7 +328,7 @@ public final void setProxypassword(String proxypassword) {

/**
* @param src
* @throws PDFException
* @throws PageException
*/
public final void setSrc(String src) throws PageException {
if (srcfile != null) throw engine.getExceptionUtil().createApplicationException("You cannot specify both the [src] and [srcfile] attributes");
Expand All @@ -338,7 +337,7 @@ public final void setSrc(String src) throws PageException {

/**
* @param srcfile the srcfile to set
* @throws PDFException
* @throws PageException
*/
public final void setSrcfile(Resource srcfile) throws PageException {
if (src != null) throw engine.getExceptionUtil().createApplicationException("You cannot specify both the [src] and [srcfile] attributes");
Expand Down
95 changes: 0 additions & 95 deletions source/java/src/org/lucee/extension/pdf/img/PDF2ImageICEpdf.java

This file was deleted.

1 change: 0 additions & 1 deletion source/java/src/org/lucee/extension/pdf/util/PDFUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
import org.apache.pdfbox.rendering.PDFRenderer;
import org.apache.pdfbox.text.PDFTextStripper;
import org.lucee.extension.pdf.PDFStruct;
import org.lucee.extension.pdf.img.PDF2ImageICEpdf;
import org.lucee.extension.pdf.tag.PDF;

import com.lowagie.text.Document;
Expand Down

0 comments on commit 37a9b1c

Please sign in to comment.