mbenson     2005/03/29 15:20:06

  Modified:    src/main/org/apache/tools/ant/util
                        ConcatFileInputStream.java
  Log:
  Fix uppercase <CODE> tags
  
  Revision  Changes    Path
  1.7       +12 -12    
ant/src/main/org/apache/tools/ant/util/ConcatFileInputStream.java
  
  Index: ConcatFileInputStream.java
  ===================================================================
  RCS file: 
/home/cvs/ant/src/main/org/apache/tools/ant/util/ConcatFileInputStream.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ConcatFileInputStream.java        2 Feb 2005 12:52:50 -0000       1.6
  +++ ConcatFileInputStream.java        29 Mar 2005 23:20:06 -0000      1.7
  @@ -28,7 +28,7 @@
   import org.apache.tools.ant.Task;
   
   /**
  - * Special <CODE>InputStream</CODE> that will
  + * Special <code>InputStream</code> that will
    * concatenate the contents of an array of files.
    */
   public class ConcatFileInputStream extends InputStream {
  @@ -41,9 +41,9 @@
       private ProjectComponent managingPc;
   
     /**
  -   * Construct a new <CODE>ConcatFileInputStream</CODE>
  -   * with the specified <CODE>File[]</CODE>.
  -   * @param file   <CODE>File[]</CODE>.
  +   * Construct a new <code>ConcatFileInputStream</code>
  +   * with the specified <code>File[]</code>.
  +   * @param file   <code>File[]</code>.
      * @throws IOException if I/O errors occur.
      */
       public ConcatFileInputStream(File[] file) throws IOException {
  @@ -67,18 +67,18 @@
       }
   
       /**
  -     * Set a managing <CODE>Task</CODE> for
  -     * this <CODE>ConcatFileInputStream</CODE>.
  -     * @param task   the managing <CODE>Task</CODE>.
  +     * Set a managing <code>Task</code> for
  +     * this <code>ConcatFileInputStream</code>.
  +     * @param task   the managing <code>Task</code>.
        */
       public void setManagingTask(Task task) {
           setManagingComponent(task);
       }
   
       /**
  -     * Set a managing <CODE>Task</CODE> for
  -     * this <CODE>ConcatFileInputStream</CODE>.
  -     * @param task   the managing <CODE>Task</CODE>.
  +     * Set a managing <code>Task</code> for
  +     * this <code>ConcatFileInputStream</code>.
  +     * @param task   the managing <code>Task</code>.
        */
       public void setManagingComponent(ProjectComponent pc) {
           this.managingPc = pc;
  @@ -86,8 +86,8 @@
   
       /**
        * Log a message with the specified logging level.
  -     * @param message    the <CODE>String</CODE> message.
  -     * @param loglevel   the <CODE>int</CODE> logging level.
  +     * @param message    the <code>String</code> message.
  +     * @param loglevel   the <code>int</code> logging level.
        */
       public void log(String message, int loglevel) {
           if (managingPc != null) {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to