[FOray-commit] SF.net SVN: foray: [7799] trunk/foray/foray-core/src/java/org/foray/core
Modular XSL-FO Implementation for Java.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2006-07-19 01:32:49
|
Revision: 7799 Author: victormote Date: 2006-07-18 18:32:44 -0700 (Tue, 18 Jul 2006) ViewCVS: http://svn.sourceforge.net/foray/?rev=7799&view=rev Log Message: ----------- Remove the File version of the InputHandler constructor. Modified Paths: -------------- trunk/foray/foray-core/src/java/org/foray/core/FOInputHandler.java trunk/foray/foray-core/src/java/org/foray/core/InputHandler.java Modified: trunk/foray/foray-core/src/java/org/foray/core/FOInputHandler.java =================================================================== --- trunk/foray/foray-core/src/java/org/foray/core/FOInputHandler.java 2006-07-19 01:32:33 UTC (rev 7798) +++ trunk/foray/foray-core/src/java/org/foray/core/FOInputHandler.java 2006-07-19 01:32:44 UTC (rev 7799) @@ -43,11 +43,6 @@ File fofile = null; URL foURL = null; - public FOInputHandler (Log logger, File fofile) { - super(logger); - this.fofile = fofile; - } - public FOInputHandler (Log logger, URL url) { super(logger); this.foURL = url; Modified: trunk/foray/foray-core/src/java/org/foray/core/InputHandler.java =================================================================== --- trunk/foray/foray-core/src/java/org/foray/core/InputHandler.java 2006-07-19 01:32:33 UTC (rev 7798) +++ trunk/foray/foray-core/src/java/org/foray/core/InputHandler.java 2006-07-19 01:32:44 UTC (rev 7799) @@ -48,10 +48,6 @@ this.logger = logger; } -// public static InputSource urlInputSource(URL url) throws IOException { -// return new InputSource(url.openStream()); -// } - /** * create an InputSource from a File * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |