rubys 01/03/09 17:11:15
Modified: src/main/org/apache/tools/ant/taskdefs XSLTProcess.java
Log:
Backing out change...
----------------------------------------------------------------------
Revision Changes Path
1.15 +3 -3 jakarta-ant/src/main/org/apache/tools/ant/taskdefs/XSLTProcess.java
Index: XSLTProcess.java
===================================================================
RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/XSLTProcess.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- XSLTProcess.java 2001/03/09 11:37:50 1.14
+++ XSLTProcess.java 2001/03/10 01:11:15 1.15
@@ -84,7 +84,7 @@
* @author <a href="mailto:kvisco@exoffice.com">Keith Visco</a>
* @author <a href="mailto:rubys@us.ibm.com">Sam Ruby</a>
* @author <a href="mailto:russgold@acm.org">Russell Gold</a>
- * @version $Revision: 1.14 $ $Date: 2001/03/09 11:37:50 $
+ * @version $Revision: 1.15 $ $Date: 2001/03/10 01:11:15 $
*/
public class XSLTProcess extends MatchingTask {
@@ -216,8 +216,8 @@
/**
* Sets the file to use for styling relative to the base directory.
*/
- public void setStyle(File xslFile) {
- this.xslFile = xslFile;
+ public void setStyle(String xslFile) {
+ this.xslFile = new File(xslFile);
}
/**
---------------------------------------------------------------------
To unsubscribe, e-mail: ant-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: ant-dev-help@jakarta.apache.org
|