diff options
author | Glen Mazza <gmazza@apache.org> | 2004-07-18 01:25:34 +0000 |
---|---|---|
committer | Glen Mazza <gmazza@apache.org> | 2004-07-18 01:25:34 +0000 |
commit | a4e08f14bf8ffc500eb0deb5ad9500da7e756170 (patch) | |
tree | f85fafe17fd02a1e2c61ae2145f93d2f3de923f4 /src/java | |
parent | 3d598730fe1e84e080ebd43580a6a60cb75bcb7e (diff) | |
download | xmlgraphics-fop-a4e08f14bf8ffc500eb0deb5ad9500da7e756170.tar.gz xmlgraphics-fop-a4e08f14bf8ffc500eb0deb5ad9500da7e756170.zip |
Removed the Driver(OutputStream) convenience constructor as not particularly
helpful, and a can of worms given all the possible permutations of constructors
that could be created.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197798 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java')
-rw-r--r-- | src/java/org/apache/fop/apps/Driver.java | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/java/org/apache/fop/apps/Driver.java b/src/java/org/apache/fop/apps/Driver.java index f63581689..cda771e7a 100644 --- a/src/java/org/apache/fop/apps/Driver.java +++ b/src/java/org/apache/fop/apps/Driver.java @@ -80,15 +80,6 @@ public class Driver implements Constants { } /** - * Convenience constructor for directly setting input and output. - * @param stream Target output stream - */ - public Driver(OutputStream stream) { - this(); - this.stream = stream; - } - - /** * Constructor with FOUserAgent * Used by CLI, AWTRenderer */ |