You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by an...@apache.org on 2003/09/17 22:11:44 UTC

cvs commit: ant/src/main/org/apache/tools/ant/taskdefs/optional/depend AntAnalyzer.java ClassFileIterator.java Depend.java

antoine     2003/09/17 13:11:44

  Modified:    src/main/org/apache/tools/ant/taskdefs/condition
                        FilesMatch.java
               src/main/org/apache/tools/ant/taskdefs/cvslib
                        ChangeLogParser.java ChangeLogTask.java
                        ChangeLogWriter.java CvsUser.java RCSFile.java
               src/main/org/apache/tools/ant/taskdefs/email EmailTask.java
                        MimeMailer.java
               src/main/org/apache/tools/ant/taskdefs/optional
                        IContract.java Javah.java Native2Ascii.java
                        NetRexxC.java PropertyFile.java ReplaceRegExp.java
                        Rpm.java Script.java TraXLiaison.java
                        XMLValidateTask.java
               src/main/org/apache/tools/ant/taskdefs/optional/ccm
                        CCMCheck.java CCMCreateTask.java
                        CCMReconfigure.java
               src/main/org/apache/tools/ant/taskdefs/optional/clearcase
                        CCCheckout.java CCLock.java CCUnCheckout.java
                        CCUnlock.java CCUpdate.java ClearCase.java
               src/main/org/apache/tools/ant/taskdefs/optional/depend
                        AntAnalyzer.java ClassFileIterator.java Depend.java
  Log:
  Spelling fixes.
  Submitted by: Larry Shatzer (Larry dot Shatzer at Spirent dot com)
  
  Revision  Changes    Path
  1.12      +4 -4      ant/src/main/org/apache/tools/ant/taskdefs/condition/FilesMatch.java
  
  Index: FilesMatch.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/condition/FilesMatch.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- FilesMatch.java	6 Jul 2003 09:03:17 -0000	1.11
  +++ FilesMatch.java	17 Sep 2003 20:11:43 -0000	1.12
  @@ -1,7 +1,7 @@
   /*
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2002 The Apache Software Foundation.  All rights
  + * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -60,7 +60,7 @@
   
   /**
    * Compares two files for bitwise equality based on size and
  - * content. Timestamps are not looked at at all.
  + * content. Timestamps are not at all looked at.
    *
    * @author Steve Loughran
    * @version $Revision$
  @@ -99,7 +99,7 @@
       }
   
       /**
  -     * comparision method of the interface
  +     * comparison method of the interface
        *
        * @return true if the files are equal
        * @exception BuildException if it all went pear-shaped
  
  
  
  1.22      +3 -3      ant/src/main/org/apache/tools/ant/taskdefs/cvslib/ChangeLogParser.java
  
  Index: ChangeLogParser.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/cvslib/ChangeLogParser.java,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- ChangeLogParser.java	14 Aug 2003 07:04:40 -0000	1.21
  +++ ChangeLogParser.java	17 Sep 2003 20:11:43 -0000	1.22
  @@ -97,9 +97,9 @@
       private final Hashtable m_entries = new Hashtable();
   
       /**
  -     * Get a list of rcs entrys as an array.
  +     * Get a list of rcs entries as an array.
        *
  -     * @return a list of rcs entrys as an array
  +     * @return a list of rcs entries as an array
        */
       CVSEntry[] getEntrySetAsArray() {
           final CVSEntry[] array = new CVSEntry[ m_entries.size() ];
  
  
  
  1.25      +6 -6      ant/src/main/org/apache/tools/ant/taskdefs/cvslib/ChangeLogTask.java
  
  Index: ChangeLogTask.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/cvslib/ChangeLogTask.java,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- ChangeLogTask.java	25 Jul 2003 12:14:42 -0000	1.24
  +++ ChangeLogTask.java	17 Sep 2003 20:11:43 -0000	1.25
  @@ -117,14 +117,14 @@
       /** Output file */
       private File m_destfile;
   
  -    /** The earliest date at which to start processing entrys.  */
  +    /** The earliest date at which to start processing entries.  */
       private Date m_start;
   
  -    /** The latest date at which to stop processing entrys.  */
  +    /** The latest date at which to stop processing entries.  */
       private Date m_stop;
   
       /**
  -     * Filesets containting list of files against which the cvs log will be
  +     * Filesets containing list of files against which the cvs log will be
        * performed. If empty then all files will in the working directory will
        * be checked.
        */
  @@ -359,7 +359,7 @@
       }
   
       /**
  -     * Filter the specified entrys accoridn to an appropriate rule.
  +     * Filter the specified entries according to an appropriate rule.
        *
        * @param entrySet the entry set to filter
        * @return the filtered entry set
  @@ -406,7 +406,7 @@
        * Print changelog to file specified in task.
        *
        * @param entrySet the entry set to write.
  -     * @throws BuildException if theres an error writing changelog.
  +     * @throws BuildException if there is an error writing changelog.
        */
       private void writeChangeLog(final CVSEntry[] entrySet)
            throws BuildException {
  
  
  
  1.10      +5 -5      ant/src/main/org/apache/tools/ant/taskdefs/cvslib/ChangeLogWriter.java
  
  Index: ChangeLogWriter.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/cvslib/ChangeLogWriter.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- ChangeLogWriter.java	19 Jul 2003 08:11:02 -0000	1.9
  +++ ChangeLogWriter.java	17 Sep 2003 20:11:43 -0000	1.10
  @@ -1,7 +1,7 @@
   /*
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2002 The Apache Software Foundation.  All rights
  + * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -65,10 +65,10 @@
    * @version $Revision$ $Date$
    */
   class ChangeLogWriter {
  -    /** output format for dates writtn to xml file */
  +    /** output format for dates written to xml file */
       private static final SimpleDateFormat c_outputDate
           = new SimpleDateFormat("yyyy-MM-dd");
  -    /** output format for times writtn to xml file */
  +    /** output format for times written to xml file */
       private static final SimpleDateFormat c_outputTime
           = new SimpleDateFormat("HH:mm");
   
  @@ -79,7 +79,7 @@
       }
   
       /**
  -     * Print out the specifed entrys.
  +     * Print out the specified entries.
        *
        * @param output writer to which to send output.
        * @param entries the entries to be written.
  
  
  
  1.5       +4 -4      ant/src/main/org/apache/tools/ant/taskdefs/cvslib/CvsUser.java
  
  Index: CvsUser.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/cvslib/CvsUser.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- CvsUser.java	19 Jul 2003 08:11:02 -0000	1.4
  +++ CvsUser.java	17 Sep 2003 20:11:43 -0000	1.5
  @@ -1,7 +1,7 @@
   /*
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2002 The Apache Software Foundation.  All rights
  + * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -102,7 +102,7 @@
       /**
        * Get the user's full name
        *
  -     * @return the usre's full name
  +     * @return the user's full name
        */
       String getDisplayname() {
           return m_displayName;
  @@ -110,7 +110,7 @@
   
   
       /**
  -     * validate that this objetc is configured.
  +     * validate that this object is configured.
        *
        * @exception BuildException if the instance has not be correctly
        *            configured.
  
  
  
  1.5       +3 -3      ant/src/main/org/apache/tools/ant/taskdefs/cvslib/RCSFile.java
  
  Index: RCSFile.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/cvslib/RCSFile.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- RCSFile.java	10 Feb 2003 14:13:43 -0000	1.4
  +++ RCSFile.java	17 Sep 2003 20:11:43 -0000	1.5
  @@ -1,7 +1,7 @@
   /*
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2002 The Apache Software Foundation.  All rights
  + * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -54,7 +54,7 @@
   package org.apache.tools.ant.taskdefs.cvslib;
   
   /**
  - * Represents a RCS File cheange.
  + * Represents a RCS File change.
    *
    * @author <a href="mailto:peter@apache.org">Peter Donald</a>
    * @author <a href="mailto:jeff.martin@synamic.co.uk">Jeff Martin</a>
  
  
  
  1.24      +1 -1      ant/src/main/org/apache/tools/ant/taskdefs/email/EmailTask.java
  
  Index: EmailTask.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/email/EmailTask.java,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- EmailTask.java	24 Jul 2003 14:20:56 -0000	1.23
  +++ EmailTask.java	17 Sep 2003 20:11:43 -0000	1.24
  @@ -254,7 +254,7 @@
   
   
       /**
  -     * Add a message elemnt
  +     * Add a message element
        *
        * @param message The message object
        * @throws BuildException if a message has already been added
  
  
  
  1.14      +4 -4      ant/src/main/org/apache/tools/ant/taskdefs/email/MimeMailer.java
  
  Index: MimeMailer.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/email/MimeMailer.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- MimeMailer.java	14 Jul 2003 10:28:41 -0000	1.13
  +++ MimeMailer.java	17 Sep 2003 20:11:43 -0000	1.14
  @@ -98,7 +98,7 @@
       private static final String DEFAULT_CHARSET
           = System.getProperty("file.encoding");
   
  -    // To work poperly with national charsets we have to use
  +    // To work properly with national charsets we have to use
       // implementation of interface javax.activation.DataSource
       /**
        * @since Ant 1.6
  @@ -160,8 +160,8 @@
               props.put("mail.smtp.host", host);
               props.put("mail.smtp.port", String.valueOf(port));
   
  -            // Aside, the JDK is clearly unaware of the scottish
  -            // 'session', which //involves excessive quantities of
  +            // Aside, the JDK is clearly unaware of the Scottish
  +            // 'session', which involves excessive quantities of
               // alcohol :-)
               Session sesh;
               Authenticator auth;
  @@ -214,7 +214,7 @@
                   // Assign/reassign message charset from MimeType
                   message.setCharset(charset);
               } else {
  -                // Next: looking if charset having explict definition
  +                // Next: looking if charset having explicit definition
                   charset = message.getCharset();
                   if (charset == null) {
                       // Using default
  
  
  
  1.19      +2 -2      ant/src/main/org/apache/tools/ant/taskdefs/optional/IContract.java
  
  Index: IContract.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/IContract.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- IContract.java	19 Jul 2003 11:20:15 -0000	1.18
  +++ IContract.java	17 Sep 2003 20:11:43 -0000	1.19
  @@ -1,7 +1,7 @@
   /*
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001-2002 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -252,7 +252,7 @@
       private File targets = null;
   
       /**
  -     * will be set to true if any of the sourca files are newer than the
  +     * will be set to true if any of the source files are newer than the
        * instrumented files
        */
       private boolean dirty = false;
  
  
  
  1.27      +2 -2      ant/src/main/org/apache/tools/ant/taskdefs/optional/Javah.java
  
  Index: Javah.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/Javah.java,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- Javah.java	13 Aug 2003 15:02:28 -0000	1.26
  +++ Javah.java	17 Sep 2003 20:11:43 -0000	1.27
  @@ -326,7 +326,7 @@
       // we need a way to not use the current classpath.
   
       /**
  -     * Peforms a compile using the classic compiler that shipped with
  +     * Performs a compile using the classic compiler that shipped with
        * JDK 1.1 and 1.2.
        */
   
  @@ -431,7 +431,7 @@
   
       /**
        * Logs the compilation parameters, adds the files to compile and logs the
  -     * &qout;niceSourceList&quot;
  +     * &quot;niceSourceList&quot;
        */
       protected void logAndAddFilesToCompile(Commandline cmd) {
           int n = 0;
  
  
  
  1.17      +2 -2      ant/src/main/org/apache/tools/ant/taskdefs/optional/Native2Ascii.java
  
  Index: Native2Ascii.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/Native2Ascii.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- Native2Ascii.java	18 Jul 2003 12:45:57 -0000	1.16
  +++ Native2Ascii.java	17 Sep 2003 20:11:43 -0000	1.17
  @@ -1,7 +1,7 @@
   /*
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2000,2002 The Apache Software Foundation.  All rights
  + * Copyright (c) 2000-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -240,7 +240,7 @@
           }
   
           // Make intermediate directories if needed
  -        // XXX JDK 1.1 dosen't have File.getParentFile,
  +        // XXX JDK 1.1 doesn't have File.getParentFile,
           String parentName = destFile.getParent();
           if (parentName != null) {
               File parentFile = new File(parentName);
  
  
  
  1.28      +1 -1      ant/src/main/org/apache/tools/ant/taskdefs/optional/NetRexxC.java
  
  Index: NetRexxC.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/NetRexxC.java,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- NetRexxC.java	14 Aug 2003 07:04:40 -0000	1.27
  +++ NetRexxC.java	17 Sep 2003 20:11:43 -0000	1.28
  @@ -720,7 +720,7 @@
       }
   
   
  -    /** Peforms a copmile using the NetRexx 1.1.x compiler  */
  +    /** Performs a compile using the NetRexx 1.1.x compiler  */
       private void doNetRexxCompile() throws BuildException {
           log("Using NetRexx compiler", Project.MSG_VERBOSE);
   
  
  
  
  1.32      +2 -2      ant/src/main/org/apache/tools/ant/taskdefs/optional/PropertyFile.java
  
  Index: PropertyFile.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/PropertyFile.java,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- PropertyFile.java	18 Jul 2003 12:45:57 -0000	1.31
  +++ PropertyFile.java	17 Sep 2003 20:11:43 -0000	1.32
  @@ -511,7 +511,7 @@
           private void checkParameters() throws BuildException {
               if (type == Type.STRING_TYPE
                   && operation == Operation.DECREMENT_OPER) {
  -                throw new BuildException("- is not suported for string "
  +                throw new BuildException("- is not supported for string "
                       + "properties (key:" + key + ")");
               }
               if (value == null && defaultValue == null) {
  @@ -522,7 +522,7 @@
                   throw new BuildException("key is mandatory");
               }
               if (type == Type.STRING_TYPE && pattern != null) {
  -                throw new BuildException("pattern is not suported for string "
  +                throw new BuildException("pattern is not supported for string "
                       + "properties (key:" + key + ")");
               }
           }
  
  
  
  1.27      +3 -3      ant/src/main/org/apache/tools/ant/taskdefs/optional/ReplaceRegExp.java
  
  Index: ReplaceRegExp.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/ReplaceRegExp.java,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- ReplaceRegExp.java	21 Aug 2003 19:42:15 -0000	1.26
  +++ ReplaceRegExp.java	17 Sep 2003 20:11:43 -0000	1.27
  @@ -79,7 +79,7 @@
    * file.  The input file(s) must be able to be properly processed by
    * a Reader instance.  That is, they must be text only, no binary.
    *
  - * The syntax of the regular expression depends on the implemtation that
  + * The syntax of the regular expression depends on the implementation that
    * you choose to use. The system property <code>ant.regexp.regexpimpl</code>
    * will be the classname of the implementation that will be used (the default
    * is <code>org.apache.tools.ant.util.regexp.JakartaOroRegexp</code> and
  @@ -218,7 +218,7 @@
        * The flags to use when matching the regular expression.  For more
        * information, consult the Perl5 syntax.
        * <ul>
  -     *  <li>g : Global replacement.  Replace all occurences found
  +     *  <li>g : Global replacement.  Replace all occurrences found
        *  <li>i : Case Insensitive.  Do not consider case in the match
        *  <li>m : Multiline.  Treat the string as multiple lines of input,
        *         using "^" and "$" as the start or end of any line, respectively,
  @@ -236,7 +236,7 @@
       /**
        * Process the file(s) one line at a time, executing the replacement
        * on one line at a time.  This is useful if you
  -     * want to only replace the first occurence of a regular expression on
  +     * want to only replace the first occurrence of a regular expression on
        * each line, which is not easy to do when processing the file as a whole.
        * Defaults to <i>false</i>.</td>
        */
  
  
  
  1.18      +1 -1      ant/src/main/org/apache/tools/ant/taskdefs/optional/Rpm.java
  
  Index: Rpm.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/Rpm.java,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- Rpm.java	13 Aug 2003 15:02:28 -0000	1.17
  +++ Rpm.java	17 Sep 2003 20:11:43 -0000	1.18
  @@ -269,7 +269,7 @@
       /**
        * Flag (optional, default=false)
        * to remove the sources after the build.
  -     * See the the <tt>--rmsource</tt>  option of rpmbuild.
  +     * See the <tt>--rmsource</tt>  option of rpmbuild.
        */
       public void setRemoveSource(boolean rs) {
           removeSource = rs;
  
  
  
  1.24      +1 -1      ant/src/main/org/apache/tools/ant/taskdefs/optional/Script.java
  
  Index: Script.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/Script.java,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- Script.java	20 Jul 2003 09:34:21 -0000	1.23
  +++ Script.java	17 Sep 2003 20:11:43 -0000	1.24
  @@ -71,7 +71,7 @@
       /**
        * Do the work.
        *
  -     * @exception BuildException if someting goes wrong with the build
  +     * @exception BuildException if something goes wrong with the build
        */
       public void execute() throws BuildException {
           runner.addBeans(getProject().getProperties());
  
  
  
  1.30      +1 -1      ant/src/main/org/apache/tools/ant/taskdefs/optional/TraXLiaison.java
  
  Index: TraXLiaison.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/TraXLiaison.java,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- TraXLiaison.java	10 Sep 2003 15:18:41 -0000	1.29
  +++ TraXLiaison.java	17 Sep 2003 20:11:43 -0000	1.30
  @@ -223,7 +223,7 @@
       }
   
       /**
  -     * Read in templates from the stylsheet
  +     * Read in templates from the stylesheet
        */
       private void readTemplates()
           throws IOException, TransformerConfigurationException {
  
  
  
  1.36      +3 -3      ant/src/main/org/apache/tools/ant/taskdefs/optional/XMLValidateTask.java
  
  Index: XMLValidateTask.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/XMLValidateTask.java,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- XMLValidateTask.java	18 Jul 2003 12:45:57 -0000	1.35
  +++ XMLValidateTask.java	17 Sep 2003 20:11:44 -0000	1.36
  @@ -435,7 +435,7 @@
        * ValidatorErrorHandler role :
        * <ul>
        * <li> log SAX parse exceptions,
  -     * <li> remember if an error occured
  +     * <li> remember if an error occurred
        * </ul>
        */
       protected class ValidatorErrorHandler implements ErrorHandler {
  @@ -467,7 +467,7 @@
   
           public void warning(SAXParseException exception) {
               // depending on implementation, XMLReader can yield hips of warning,
  -            // only output then if user explicitely asked for it
  +            // only output then if user explicitly asked for it
               if (warn) {
                   doLog(exception, Project.MSG_WARN);
               }
  @@ -538,7 +538,7 @@
   
           /**
            * Gets the attribute value.
  -         * @return the featuree value
  +         * @return the feature value
            */
           public boolean getValue() {
               return attributeValue;
  
  
  
  1.17      +1 -1      ant/src/main/org/apache/tools/ant/taskdefs/optional/ccm/CCMCheck.java
  
  Index: CCMCheck.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/ccm/CCMCheck.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- CCMCheck.java	22 Aug 2003 15:25:44 -0000	1.16
  +++ CCMCheck.java	17 Sep 2003 20:11:44 -0000	1.17
  @@ -230,7 +230,7 @@
       public static final String FLAG_COMMENT = "/comment";
   
       /**
  -     *  -task flag -- associate checckout task with task
  +     *  -task flag -- associate checkout task with task
        */
       public static final String FLAG_TASK = "/task";
   }
  
  
  
  1.15      +1 -1      ant/src/main/org/apache/tools/ant/taskdefs/optional/ccm/CCMCreateTask.java
  
  Index: CCMCreateTask.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/ccm/CCMCreateTask.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- CCMCreateTask.java	25 Jul 2003 12:14:42 -0000	1.14
  +++ CCMCreateTask.java	17 Sep 2003 20:11:44 -0000	1.15
  @@ -294,7 +294,7 @@
       public static final String FLAG_SUBSYSTEM = "/subsystem";
   
       /**
  -     *  -task flag -- associate checckout task with task
  +     *  -task flag -- associate checkout task with task
        */
       public static final String FLAG_TASK = "/task";
   
  
  
  
  1.13      +1 -1      ant/src/main/org/apache/tools/ant/taskdefs/optional/ccm/CCMReconfigure.java
  
  Index: CCMReconfigure.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/ccm/CCMReconfigure.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- CCMReconfigure.java	25 Jul 2003 12:14:42 -0000	1.12
  +++ CCMReconfigure.java	17 Sep 2003 20:11:44 -0000	1.13
  @@ -61,7 +61,7 @@
   
   
   /**
  - * Task allows to reconfigure a project, recurcively or not
  + * Task allows to reconfigure a project, recursively or not
    * @author Benoit Moussaud benoit.moussaud@criltelecom.com
    */
   public class CCMReconfigure extends Continuus {
  
  
  
  1.11      +2 -2      ant/src/main/org/apache/tools/ant/taskdefs/optional/clearcase/CCCheckout.java
  
  Index: CCCheckout.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/clearcase/CCCheckout.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- CCCheckout.java	25 Jul 2003 12:14:43 -0000	1.10
  +++ CCCheckout.java	17 Sep 2003 20:11:44 -0000	1.11
  @@ -1,7 +1,7 @@
   /*
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2000,2002-2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2000-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -66,7 +66,7 @@
    * Performs ClearCase checkout.
    *
    * <p>
  - * The following attributes are interpretted:
  + * The following attributes are interpreted:
    * <table border="1">
    *   <tr>
    *     <th>Attribute</th>
  
  
  
  1.4       +1 -1      ant/src/main/org/apache/tools/ant/taskdefs/optional/clearcase/CCLock.java
  
  Index: CCLock.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/clearcase/CCLock.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- CCLock.java	25 Jul 2003 12:14:43 -0000	1.3
  +++ CCLock.java	17 Sep 2003 20:11:44 -0000	1.4
  @@ -71,7 +71,7 @@
    * Performs a ClearCase Lock command.
    *
    * <p>
  - * The following attributes are interpretted:
  + * The following attributes are interpreted:
    * <table border="1">
    *   <tr>
    *     <th>Attribute</th>
  
  
  
  1.10      +2 -2      ant/src/main/org/apache/tools/ant/taskdefs/optional/clearcase/CCUnCheckout.java
  
  Index: CCUnCheckout.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/clearcase/CCUnCheckout.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- CCUnCheckout.java	25 Jul 2003 12:14:43 -0000	1.9
  +++ CCUnCheckout.java	17 Sep 2003 20:11:44 -0000	1.10
  @@ -1,7 +1,7 @@
   /*
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2000,2002-2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2000-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -63,7 +63,7 @@
    * Performs ClearCase UnCheckout command.
    *
    * <p>
  - * The following attributes are interpretted:
  + * The following attributes are interpreted:
    * <table border="1">
    *   <tr>
    *     <th>Attribute</th>
  
  
  
  1.4       +1 -1      ant/src/main/org/apache/tools/ant/taskdefs/optional/clearcase/CCUnlock.java
  
  Index: CCUnlock.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/clearcase/CCUnlock.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- CCUnlock.java	25 Jul 2003 12:14:43 -0000	1.3
  +++ CCUnlock.java	17 Sep 2003 20:11:44 -0000	1.4
  @@ -69,7 +69,7 @@
    * Performs a ClearCase Unlock command.
    *
    * <p>
  - * The following attributes are interpretted:
  + * The following attributes are interpreted:
    * <table border="1">
    *   <tr>
    *     <th>Attribute</th>
  
  
  
  1.12      +1 -1      ant/src/main/org/apache/tools/ant/taskdefs/optional/clearcase/CCUpdate.java
  
  Index: CCUpdate.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/clearcase/CCUpdate.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- CCUpdate.java	25 Jul 2003 12:14:43 -0000	1.11
  +++ CCUpdate.java	17 Sep 2003 20:11:44 -0000	1.12
  @@ -63,7 +63,7 @@
    * Performs a ClearCase Update command.
    *
    * <p>
  - * The following attributes are interpretted:
  + * The following attributes are interpreted:
    * <table border="1">
    *   <tr>
    *     <th>Attribute</th>
  
  
  
  1.14      +2 -2      ant/src/main/org/apache/tools/ant/taskdefs/optional/clearcase/ClearCase.java
  
  Index: ClearCase.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/clearcase/ClearCase.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- ClearCase.java	19 Jul 2003 11:20:16 -0000	1.13
  +++ ClearCase.java	17 Sep 2003 20:11:44 -0000	1.14
  @@ -1,7 +1,7 @@
   /*
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2000,2002-2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2000-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -76,7 +76,7 @@
    * cleartool.
    * </p>
    *
  - * @author Curtis White (Exteneded by Sean P. Kane)
  + * @author Curtis White (Extended by Sean P. Kane)
    */
   public abstract class ClearCase extends Task {
       private String m_ClearToolDir = "";
  
  
  
  1.8       +1 -1      ant/src/main/org/apache/tools/ant/taskdefs/optional/depend/AntAnalyzer.java
  
  Index: AntAnalyzer.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/depend/AntAnalyzer.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- AntAnalyzer.java	5 Jul 2003 14:34:12 -0000	1.7
  +++ AntAnalyzer.java	17 Sep 2003 20:11:44 -0000	1.8
  @@ -83,7 +83,7 @@
        * @param files a vector to be populated with the files which contain
        *      the dependency classes
        * @param classes a vector to be populated with the names of the
  -     *      depencency classes.
  +     *      dependency classes.
        */
       protected void determineDependencies(Vector files, Vector classes) {
           // we get the root classes and build up a set of
  
  
  
  1.9       +2 -2      ant/src/main/org/apache/tools/ant/taskdefs/optional/depend/ClassFileIterator.java
  
  Index: ClassFileIterator.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/depend/ClassFileIterator.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- ClassFileIterator.java	10 Feb 2003 14:13:47 -0000	1.8
  +++ ClassFileIterator.java	17 Sep 2003 20:11:44 -0000	1.9
  @@ -1,7 +1,7 @@
   /*
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + * Copyright (c) 2000-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -63,7 +63,7 @@
       /**
        * Get the next class file in the iteration
        *
  -     * @return the next class file in the iterationr
  +     * @return the next class file in the iteration
        */
       ClassFile getNextClassFile();
   }
  
  
  
  1.38      +6 -6      ant/src/main/org/apache/tools/ant/taskdefs/optional/depend/Depend.java
  
  Index: Depend.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/depend/Depend.java,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- Depend.java	19 Jul 2003 11:20:16 -0000	1.37
  +++ Depend.java	17 Sep 2003 20:11:44 -0000	1.38
  @@ -130,7 +130,7 @@
       /**
        * indicates that the dependency relationships should be extended beyond
        * direct dependencies to include all classes. So if A directly affects
  -     * B abd B directly affects C, then A indirectly affects C.
  +     * B and B directly affects C, then A indirectly affects C.
        */
       private boolean closure = false;
   
  @@ -197,7 +197,7 @@
        * Read the dependencies from cache file
        *
        * @return a collection of class dependencies
  -     * @exception IOException if the dependnecy file cannot be read
  +     * @exception IOException if the dependency file cannot be read
        */
       private Hashtable readCachedDependencies(File depFile) throws IOException {
           Hashtable dependencyMap = new Hashtable();
  @@ -472,7 +472,7 @@
       /**
        * Delete all the class files of classes which depend on the given class
        *
  -     * @param className the name of the class whose dependent classes willbe
  +     * @param className the name of the class whose dependent classes will be
        *      deleted
        * @return the number of class files removed
        */
  @@ -761,11 +761,11 @@
        * file vector, including any subdirectories.
        *
        * @param classFileList a list of ClassFileInfo objects for all the
  -     *      files in the diretcort tree
  -     * @param dir tyhe directory tree to be searched, recursivley, for class
  +     *      files in the directory tree
  +     * @param dir the directory tree to be searched, recursively, for class
        *      files
        * @param root the root of the source tree. This is used to determine
  -     *      the absoluate class name from the relative position in the
  +     *      the absolute class name from the relative position in the
        *      source tree
        */
       private void addClassFiles(Vector classFileList, File dir, File root) {
  
  
  

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