Browse Source

Move dependency classfileset support code over to Apache BCEL

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270044 13f79535-47bb-0310-9956-ffa450edef68
master
Conor MacNeill 23 years ago
parent
commit
114af4d393
3 changed files with 5 additions and 5 deletions
  1. +1
    -1
      build.xml
  2. +2
    -2
      src/main/org/apache/tools/ant/types/optional/depend/DependScanner.java
  3. +2
    -2
      src/main/org/apache/tools/ant/util/depend/Dependencies.java

+ 1
- 1
build.xml View File

@@ -179,7 +179,7 @@
classname="org.apache.xerces.parsers.SAXParser"
classpathref="classpath" />
<available property="bcel.present"
classname="de.fub.bytecode.Constants"
classname="org.apache.bcel.Constants"
classpathref="classpath" />
<condition property="javamail.complete">


+ 2
- 2
src/main/org/apache/tools/ant/types/optional/depend/DependScanner.java View File

@@ -60,8 +60,8 @@ import org.apache.tools.ant.util.depend.Dependencies;
import org.apache.tools.ant.util.depend.Filter;
import org.apache.tools.ant.DirectoryScanner;

import de.fub.bytecode.classfile.*;
import de.fub.bytecode.*;
import org.apache.bcel.classfile.*;
import org.apache.bcel.*;

/**
* An interface used to describe the actions required by any type of


+ 2
- 2
src/main/org/apache/tools/ant/util/depend/Dependencies.java View File

@@ -55,8 +55,8 @@ package org.apache.tools.ant.util.depend;

import java.io.*;
import java.util.*;
import de.fub.bytecode.classfile.*;
import de.fub.bytecode.*;
import org.apache.bcel.classfile.*;
import org.apache.bcel.*;


public class Dependencies implements Visitor {


Loading…
Cancel
Save