Browse Source

typo

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@274791 13f79535-47bb-0310-9956-ffa450edef68
master
Conor MacNeill 22 years ago
parent
commit
feb7ea550f
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      src/main/org/apache/tools/ant/taskdefs/optional/extension/ExtensionAdapter.java

+ 5
- 5
src/main/org/apache/tools/ant/taskdefs/optional/extension/ExtensionAdapter.java View File

@@ -105,7 +105,7 @@ public class ExtensionAdapter extends DataType {
* The URL from which the most recent version of this optional package * The URL from which the most recent version of this optional package
* can be obtained if it is not already installed. * can be obtained if it is not already installed.
*/ */
private String implementationVendor;
private String implementationVendorURL;


/** /**
* Set the name of extension. * Set the name of extension.
@@ -174,7 +174,7 @@ public class ExtensionAdapter extends DataType {
*/ */
public void setImplementationUrl(final String implementationURL) { public void setImplementationUrl(final String implementationURL) {
verifyNotAReference(); verifyNotAReference();
this.implementationVendor = implementationURL;
this.implementationVendorURL = implementationURL;
} }


/** /**
@@ -195,7 +195,7 @@ public class ExtensionAdapter extends DataType {
|| null != implementationVersion || null != implementationVersion
|| null != implementationVendorID || null != implementationVendorID
|| null != implementationVendor || null != implementationVendor
|| null != implementationVendor) {
|| null != implementationVendorURL) {
throw tooManyAttributes(); throw tooManyAttributes();
} }
// change this to get the objects from the other reference // change this to get the objects from the other reference
@@ -208,7 +208,7 @@ public class ExtensionAdapter extends DataType {
implementationVersion = other.implementationVersion; implementationVersion = other.implementationVersion;
implementationVendorID = other.implementationVendorID; implementationVendorID = other.implementationVendorID;
implementationVendor = other.implementationVendor; implementationVendor = other.implementationVendor;
implementationVendor = other.implementationVendor;
implementationVendorURL = other.implementationVendorURL;
} else { } else {
final String message = final String message =
reference.getRefId() + " doesn\'t refer to a Extension"; reference.getRefId() + " doesn\'t refer to a Extension";
@@ -251,7 +251,7 @@ public class ExtensionAdapter extends DataType {
implementationVersionString, implementationVersionString,
implementationVendor, implementationVendor,
implementationVendorID, implementationVendorID,
implementationVendor);
implementationVendorURL);
} }


/** /**


Loading…
Cancel
Save