final CPInfo[] constantPool = this.classFile.getConstantPool();
for (CPInfo cpInfo : constantPool) {
if (cpInfo instanceof ConstantClassInfo) {
final ConstantClassInfo i = (ConstantClassInfo) cpInfo;
String dependencyName = null;
boolean isIrrelevant = false;
// Check found dependency
try {
dependencyName = i.getName().replaceAll("/", ".");
if (dependencyName.startsWith("[")) continue;
// If this line returns the class was found and is probably irrelevant
// FIXME: Also classes of this application are found!