Browse Source

Backing out change...

----------------------------------------------------------------------


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268799 13f79535-47bb-0310-9956-ffa450edef68
master
Sam Ruby 24 years ago
parent
commit
2870e59a51
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/main/org/apache/tools/ant/taskdefs/XSLTProcess.java

+ 2
- 2
src/main/org/apache/tools/ant/taskdefs/XSLTProcess.java View File

@@ -216,8 +216,8 @@ public class XSLTProcess extends MatchingTask {
/**
* 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);
}

/**


Loading…
Cancel
Save