Browse Source

fix version number

master
Stefan Bodewig 10 years ago
parent
commit
cc2ca5375f
2 changed files with 5 additions and 5 deletions
  1. +2
    -2
      manual/Tasks/junitreport.html
  2. +3
    -3
      src/main/org/apache/tools/ant/taskdefs/optional/junit/AggregateTransformer.java

+ 2
- 2
manual/Tasks/junitreport.html View File

@@ -168,12 +168,12 @@ These tags can pass XSL parameters to the stylesheet.
</table> </table>


<h4>classpath</h4> <h4>classpath</h4>
<p><em>Since Ant 1.10.</em>
<p><em>Since Ant 1.9.5.</em>
Like for the <a href="../CoreTasks/style.html#classpath">XSLT task</a>, Like for the <a href="../CoreTasks/style.html#classpath">XSLT task</a>,
a nested &lt;classpath&gt; will be used to load the processor.</p> a nested &lt;classpath&gt; will be used to load the processor.</p>


<h4>factory</h4> <h4>factory</h4>
<p><em>Since Ant 1.10.</em>
<p><em>Since Ant 1.9.5.</em>
Like for the <a href="../CoreTasks/style.html#factory">XSLT task</a>, Like for the <a href="../CoreTasks/style.html#factory">XSLT task</a>,
a nested &lt;factory&gt; can be used to specify factory settings.</p> a nested &lt;factory&gt; can be used to specify factory settings.</p>




+ 3
- 3
src/main/org/apache/tools/ant/taskdefs/optional/junit/AggregateTransformer.java View File

@@ -93,7 +93,7 @@ public class AggregateTransformer {
/** /**
* The internal XSLT task used to perform the transformation. * The internal XSLT task used to perform the transformation.
* *
* @since Ant 1.10
* @since Ant 1.9.5
*/ */
private XSLTProcess xsltTask; private XSLTProcess xsltTask;


@@ -218,7 +218,7 @@ public class AggregateTransformer {
* Creates a classpath to be used for the internal XSLT task. * Creates a classpath to be used for the internal XSLT task.
* *
* @return the classpath to be configured * @return the classpath to be configured
* @since Ant 1.10
* @since Ant 1.9.5
*/ */
public Path createClasspath() { public Path createClasspath() {
return xsltTask.createClasspath(); return xsltTask.createClasspath();
@@ -228,7 +228,7 @@ public class AggregateTransformer {
* Creates a factory configuration to be used for the internal XSLT task. * Creates a factory configuration to be used for the internal XSLT task.
* *
* @return the factory description to be configured * @return the factory description to be configured
* @since Ant 1.10
* @since Ant 1.9.5
*/ */
public XSLTProcess.Factory createFactory() { public XSLTProcess.Factory createFactory() {
return xsltTask.createFactory(); return xsltTask.createFactory();


Loading…
Cancel
Save