From: Glen Mazza Date: Tue, 8 Jun 2004 02:28:37 +0000 (+0000) Subject: Removed the new apps.Document from public access within Driver, at least until the... X-Git-Tag: Root_Temp_KnuthStylePageBreaking~726 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1ce8c843d1f36535c53bcc8b70a5d4680188fb29;p=xmlgraphics-fop.git Removed the new apps.Document from public access within Driver, at least until the former class' methods have been finalized and its API benefits over apps.Driver better declared. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197692 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/fop/apps/Driver.java b/src/java/org/apache/fop/apps/Driver.java index b9a5cb213..8fdd30dad 100644 --- a/src/java/org/apache/fop/apps/Driver.java +++ b/src/java/org/apache/fop/apps/Driver.java @@ -638,20 +638,4 @@ public class Driver { } } - /** - * Public accessor for setting the currentDocument to process. - * @param document the Document object that should be processed. - */ - public void setCurrentDocument(Document document) { - currentDocument = document; - } - - /** - * Public accessor for getting the currentDocument - * @return the currentDocument - */ - public Document getCurrentDocument() { - return currentDocument; - } - }