Browse Source

remove what appear to be the last of my formerly habitual uppercase HTML CODE tags ;)

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@911105 13f79535-47bb-0310-9956-ffa450edef68
master
Matthew Jason Benson 15 years ago
parent
commit
4f1e68bd2b
3 changed files with 7 additions and 7 deletions
  1. +3
    -3
      src/main/org/apache/tools/ant/util/ChainedMapper.java
  2. +2
    -2
      src/main/org/apache/tools/ant/util/CompositeMapper.java
  3. +2
    -2
      src/main/org/apache/tools/ant/util/FirstMatchMapper.java

+ 3
- 3
src/main/org/apache/tools/ant/util/ChainedMapper.java View File

@@ -24,10 +24,10 @@ import java.util.Iterator;
import java.util.ArrayList; import java.util.ArrayList;


/** /**
* A <CODE>ContainerMapper</CODE> that chains the results of the first
* nested <CODE>FileNameMapper</CODE>s into sourcefiles for the second,
* A <code>ContainerMapper</code> that chains the results of the first
* nested <code>FileNameMapper</code>s into sourcefiles for the second,
* the second to the third, and so on, returning the resulting mapped * the second to the third, and so on, returning the resulting mapped
* filenames from the last nested <CODE>FileNameMapper</CODE>.
* filenames from the last nested <code>FileNameMapper</code>.
*/ */
public class ChainedMapper extends ContainerMapper { public class ChainedMapper extends ContainerMapper {




+ 2
- 2
src/main/org/apache/tools/ant/util/CompositeMapper.java View File

@@ -21,8 +21,8 @@ import java.util.Iterator;
import java.util.LinkedHashSet; import java.util.LinkedHashSet;


/** /**
* A <CODE>ContainerMapper</CODE> that unites the results of its constituent
* <CODE>FileNameMapper</CODE>s into a single set of result filenames.
* A <code>ContainerMapper</code> that unites the results of its constituent
* <code>FileNameMapper</code>s into a single set of result filenames.
*/ */
public class CompositeMapper extends ContainerMapper { public class CompositeMapper extends ContainerMapper {




+ 2
- 2
src/main/org/apache/tools/ant/util/FirstMatchMapper.java View File

@@ -23,8 +23,8 @@ import java.util.Iterator;
import java.util.LinkedList; import java.util.LinkedList;


/** /**
* A <CODE>ContainerMapper</CODE> that returns the results of its
* first constituent <CODE>FileNameMapper</CODE>s that matches.
* A <code>ContainerMapper</code> that returns the results of its
* first constituent <code>FileNameMapper</code>s that matches.
* *
* @since Ant 1.8.0 * @since Ant 1.8.0
*/ */


Loading…
Cancel
Save