if (cache.containsKey(file.getAbsolutePath()))
{
return cache.get(file.getAbsolutePath());
}
ClassFile classFile= new ClassFile(file);
ClassInputProcess inputProcess= new ClassInputProcess(arguments, classFile);
DEXmlvmOutputProcess outputProcess= new DEXmlvmOutputProcess(arguments, enableRedList, false);
outputProcess.addPreprocess(inputProcess);
CompilationBundle bundle= new CompilationBundle();