You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by co...@apache.org on 2003/07/09 13:34:09 UTC

cvs commit: ant/src/main/org/apache/tools/ant/taskdefs/optional/extension ExtensionAdapter.java

conor       2003/07/09 04:34:09

  Modified:    src/main/org/apache/tools/ant/taskdefs/optional/extension
                        ExtensionAdapter.java
  Log:
  typo
  
  Revision  Changes    Path
  1.7       +6 -6      ant/src/main/org/apache/tools/ant/taskdefs/optional/extension/ExtensionAdapter.java
  
  Index: ExtensionAdapter.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/extension/ExtensionAdapter.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -w -u -r1.6 -r1.7
  --- ExtensionAdapter.java	9 Jul 2003 11:24:31 -0000	1.6
  +++ ExtensionAdapter.java	9 Jul 2003 11:34:09 -0000	1.7
  @@ -105,7 +105,7 @@
        * The URL from which the most recent version of this optional package
        * can be obtained if it is not already installed.
        */
  -    private String implementationVendor;
  +    private String implementationVendorURL;
   
       /**
        * Set the name of extension.
  @@ -174,7 +174,7 @@
        */
       public void setImplementationUrl(final String implementationURL) {
           verifyNotAReference();
  -        this.implementationVendor = implementationURL;
  +        this.implementationVendorURL = implementationURL;
       }
   
       /**
  @@ -195,7 +195,7 @@
               || null != implementationVersion
               || null != implementationVendorID
               || null != implementationVendor
  -            || null != implementationVendor) {
  +            || null != implementationVendorURL) {
               throw tooManyAttributes();
           }
           // change this to get the objects from the other reference
  @@ -208,7 +208,7 @@
               implementationVersion = other.implementationVersion;
               implementationVendorID = other.implementationVendorID;
               implementationVendor = other.implementationVendor;
  -            implementationVendor = other.implementationVendor;
  +            implementationVendorURL = other.implementationVendorURL;
           } else {
               final String message =
                   reference.getRefId() + " doesn\'t refer to a Extension";
  @@ -251,7 +251,7 @@
                                 implementationVersionString,
                                 implementationVendor,
                                 implementationVendorID,
  -                              implementationVendor);
  +                              implementationVendorURL);
       }
   
       /**
  
  
  

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