Browse Source

Remove unused import

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273168 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 23 years ago
parent
commit
f93b4f4fc8
1 changed files with 3 additions and 6 deletions
  1. +3
    -6
      src/main/org/apache/tools/ant/types/selectors/BaseExtendSelector.java

+ 3
- 6
src/main/org/apache/tools/ant/types/selectors/BaseExtendSelector.java View File

@@ -51,16 +51,12 @@
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*/

package org.apache.tools.ant.types.selectors;

import java.io.File;

import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.types.DataType;
import org.apache.tools.ant.types.Parameter;


/**
* Convenience base class for all selectors accessed through ExtendSelector.
* It provides support for gathering the parameters together as well as for
@@ -70,8 +66,9 @@ import org.apache.tools.ant.types.Parameter;
* @author <a href="mailto:bruce@callenish.com">Bruce Atherton</a>
* @since 1.5
*/
public abstract class BaseExtendSelector extends BaseSelector implements
ExtendFileSelector {
public abstract class BaseExtendSelector
extends BaseSelector
implements ExtendFileSelector {

/** The passed in parameter array. */
protected Parameter[] parameters = null;


Loading…
Cancel
Save