diff options
author | Simon Pepping <spepping@apache.org> | 2005-12-09 12:46:23 +0000 |
---|---|---|
committer | Simon Pepping <spepping@apache.org> | 2005-12-09 12:46:23 +0000 |
commit | 2e0a5e70c9c2661cd2cfed76ad5424a029ade709 (patch) | |
tree | 9544afac4da120b73c7de635179ca94646c4beed /src/java/org/apache/fop/apps/Fop.java | |
parent | 1c6a45bc0c6c37bd13e67d702f38b17d530d5675 (diff) | |
download | xmlgraphics-fop-2e0a5e70c9c2661cd2cfed76ad5424a029ade709.tar.gz xmlgraphics-fop-2e0a5e70c9c2661cd2cfed76ad5424a029ade709.zip |
The result of some practice with Checkstyle
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@355471 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/apps/Fop.java')
-rw-r--r-- | src/java/org/apache/fop/apps/Fop.java | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/java/org/apache/fop/apps/Fop.java b/src/java/org/apache/fop/apps/Fop.java index e87c1aa4d..2694a7690 100644 --- a/src/java/org/apache/fop/apps/Fop.java +++ b/src/java/org/apache/fop/apps/Fop.java @@ -67,7 +67,6 @@ public class Fop implements Constants { * output format (ex. "application/pdf" for PDF). * @param outputFormat the MIME type of the output format to use (ex. "application/pdf"). * @param ua FOUserAgent object - * @throws IllegalArgumentException if an unsupported renderer type was requested. */ public Fop(String outputFormat, FOUserAgent ua) { this.outputFormat = outputFormat; @@ -82,7 +81,6 @@ public class Fop implements Constants { * Constructor for FOP with a default FOUserAgent. It uses MIME types to select the * output format (ex. "application/pdf" for PDF). * @param outputFormat the MIME type of the output format to use (ex. "application/pdf"). - * @throws IllegalArgumentException if an unsupported renderer type was requested. */ public Fop(String outputFormat) { this(outputFormat, null); @@ -106,7 +104,6 @@ public class Fop implements Constants { * <li>Fop.RENDER_PNG</li> * </ul> * @param ua FOUserAgent object - * @throws IllegalArgumentException if an unsupported renderer type was requested. * @deprecated Use {@link org.apache.fop.apps.Fop#Fop(java.lang.String, FOUserAgent)} instead! * This constructor will be removed. */ |