{
// is this class deobfuscated?
// we need to tell the decompiler the deobfuscated name so it doesn't get freaked out
// the decompiler only sees the deobfuscated class, so we need to load it by the deobfuscated name
String lookupClassName = obfClassName;
ClassMapping classMapping = m_mappings.getClassByObf( obfClassName );
if( classMapping != null && classMapping.getDeobfName() != null )
{
lookupClassName = classMapping.getDeobfName();
}
// is this class even in the jar?
if( !m_jarIndex.containsObfClass( new ClassEntry( obfClassName ) ) )
{