You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by mb...@apache.org on 2004/12/15 00:52:08 UTC

cvs commit: ant/src/main/org/apache/tools/ant Project.java

mbenson     2004/12/14 15:52:08

  Modified:    src/main/org/apache/tools/ant Project.java
  Log:
  lower-case HTML tags
  
  Revision  Changes    Path
  1.180     +8 -8      ant/src/main/org/apache/tools/ant/Project.java
  
  Index: Project.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/Project.java,v
  retrieving revision 1.179
  retrieving revision 1.180
  diff -u -r1.179 -r1.180
  --- Project.java	22 Nov 2004 09:23:26 -0000	1.179
  +++ Project.java	14 Dec 2004 23:52:08 -0000	1.180
  @@ -1214,8 +1214,8 @@
       }
   
       /**
  -     * Executes a <CODE>Vector</CODE> of sorted targets.
  -     * @param sortedTargets   the aforementioned <CODE>Vector</CODE>.
  +     * Executes a <code>Vector</code> of sorted targets.
  +     * @param sortedTargets   the aforementioned <code>Vector</code>.
        */
       public void executeSortedTargets(Vector sortedTargets)
           throws BuildException {
  @@ -1580,7 +1580,7 @@
   
       /**
        * Topologically sorts a set of targets.  Equivalent to calling
  -     * <CODE>topoSort(new String[] {root}, targets, true)</CODE>.
  +     * <code>topoSort(new String[] {root}, targets, true)</code>.
        *
        * @param root The name of the root target. The sort is created in such
        *             a way that the sequence of Targets up to the root
  @@ -1599,7 +1599,7 @@
   
       /**
        * Topologically sorts a set of targets.  Equivalent to calling
  -     * <CODE>topoSort(new String[] {root}, targets, returnAll)</CODE>.
  +     * <code>topoSort(new String[] {root}, targets, returnAll)</code>.
        *
        * @param root The name of the root target. The sort is created in such
        *             a way that the sequence of Targets up to the root
  @@ -1607,7 +1607,7 @@
        *             Must not be <code>null</code>.
        * @param targets A Hashtable mapping names to Targets.
        *                Must not be <code>null</code>.
  -     * @param returnAll <CODE>boolean</CODE> indicating whether to return all
  +     * @param returnAll <code>boolean</code> indicating whether to return all
        *                  targets, or the execution sequence only.
        * @return a Vector of Target objects in sorted order.
        * @exception BuildException if there is a cyclic dependency among the
  @@ -1622,14 +1622,14 @@
       /**
        * Topologically sorts a set of targets.
        *
  -     * @param root <CODE>String[]</CODE> containing the names of the root targets.
  +     * @param root <code>String[]</code> containing the names of the root targets.
        *             The sort is created in such a way that the ordered sequence of
        *             Targets is the minimum possible such sequence to the specified
        *             root targets.
        *             Must not be <code>null</code>.
        * @param targets A map of names to targets (String to Target).
        *                Must not be <code>null</code>.
  -     * @param returnAll <CODE>boolean</CODE> indicating whether to return all
  +     * @param returnAll <code>boolean</code> indicating whether to return all
        *                  targets, or the execution sequence only.
        * @return a Vector of Target objects in sorted order.
        * @exception BuildException if there is a cyclic dependency among the
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org