Skip to content

Commit b1cd3e5

Browse files
committed
2 parents 1c94782 + 93d6516 commit b1cd3e5

File tree

153 files changed

+3602
-2628
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+3602
-2628
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

itext/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<artifactId>itextpdf</artifactId>
1111
<packaging>jar</packaging>
1212
<name>iText, a Free Java-PDF library</name>
13-
<version>5.5.7</version>
13+
<version>5.5.8</version>
1414
<description>iText, a free Java-PDF library</description>
1515
<!-- General Info -->
1616
<url>http://itextpdf.com</url>

itext/src/main/java/com/itextpdf/testutils/CompareTool.java

Lines changed: 187 additions & 29 deletions
Large diffs are not rendered by default.

itext/src/main/java/com/itextpdf/testutils/ITextTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
import com.itextpdf.text.log.Logger;
4848
import com.itextpdf.text.log.LoggerFactory;
4949

50-
import javax.management.OperationsException;
5150
import java.io.File;
51+
import java.io.IOException;
5252

5353
public abstract class ITextTest {
5454

@@ -58,7 +58,7 @@ public void runTest() throws Exception {
5858
LOGGER.info("Starting test.");
5959
String outPdf = getOutPdf();
6060
if (outPdf == null || outPdf.length() == 0)
61-
throw new OperationsException("outPdf cannot be empty!");
61+
throw new IOException("outPdf cannot be empty!");
6262
makePdf(outPdf);
6363
assertPdf(outPdf);
6464
comparePdf(outPdf, getCmpPdf());

0 commit comments

Comments
 (0)