Author: tilman
Date: Mon Aug 25 10:45:18 2025
New Revision: 1927993
Log:
PDFBOX-5660: fix typo
Modified:
pdfbox/trunk/fontbox/src/test/java/org/apache/fontbox/afm/FontMetricsTest.java
Modified:
pdfbox/trunk/fontbox/src/test/java/org/apache/fontbox/afm/FontMetricsTest.java
==============================================================================
---
pdfbox/trunk/fontbox/src/test/java/org/apache/fontbox/afm/FontMetricsTest.java
Mon Aug 25 10:45:14 2025 (r1927992)
+++
pdfbox/trunk/fontbox/src/test/java/org/apache/fontbox/afm/FontMetricsTest.java
Mon Aug 25 10:45:18 2025 (r1927993)
@@ -132,7 +132,7 @@ class FontMetricsTest
fontMetrics.setMetricSets(-1);
fail("An IllegalArgumentException should have been thrown");
}
- catch (IllegalArgumentException excpetion)
+ catch (IllegalArgumentException exception)
{
// do nothing
}
@@ -143,7 +143,7 @@ class FontMetricsTest
fontMetrics.setMetricSets(3);
fail("An IllegalArgumentException should have been thrown");
}
- catch (IllegalArgumentException excpetion)
+ catch (IllegalArgumentException exception)
{
// do nothing
}