aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Cumiskey <acumiskey@apache.org>2008-05-06 16:23:53 +0000
committerAdrian Cumiskey <acumiskey@apache.org>2008-05-06 16:23:53 +0000
commitbba0a03fd929ac83d2b08daf49bf5643f90a3686 (patch)
treea1d55cdf62d3cafc7ab155d763e0b73ac477066e
parent175c6a8d234fc44e8b41bad5816645c2a9184a87 (diff)
downloadxmlgraphics-fop-bba0a03fd929ac83d2b08daf49bf5643f90a3686.tar.gz
xmlgraphics-fop-bba0a03fd929ac83d2b08daf49bf5643f90a3686.zip
Merged revisions 653828 via svnmerge from
https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk ........ r653828 | acumiskey | 2008-05-06 17:23:06 +0100 (Tue, 06 May 2008) | 2 lines Very small cleanup to unit test. This method does not need to be protected. ........ git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_AFPGOCAResources@653829 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--test/java/org/apache/fop/render/pdf/BasePDFTestCase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/java/org/apache/fop/render/pdf/BasePDFTestCase.java b/test/java/org/apache/fop/render/pdf/BasePDFTestCase.java
index d4b748a8d..7c66a0ceb 100644
--- a/test/java/org/apache/fop/render/pdf/BasePDFTestCase.java
+++ b/test/java/org/apache/fop/render/pdf/BasePDFTestCase.java
@@ -101,7 +101,7 @@ public class BasePDFTestCase extends AbstractFOPTestCase {
}
}
- protected static Exception extractOriginalException(Exception e) {
+ private static Exception extractOriginalException(Exception e) {
if (e.getCause() != null) {
return extractOriginalException((Exception)e.getCause());
} else if (e instanceof SAXException) {