All Downloads are FREE. Search and download functionalities are using the official Maven repository.

japicmp.cmp.ReducibleClassPool Maven / Gradle / Ivy

package japicmp.cmp;

import javassist.ClassPool;
import javassist.CtClass;

/**
 * A {@link ClassPool} that allows to remove a class from the pool.
 */
public class ReducibleClassPool extends ClassPool {
  public void remove(CtClass ctClass) {
	removeCached(ctClass.getName());
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy