String resourcePath = inner + ".class";
String outerClassInternalName = info.getClassName().replace('.', '/');
byte[] innerClassBytecode;
try {
innerClassBytecode = m_store.read(resourcePath);
manipulator.prepareInnerClass(inner, innerClassBytecode);
} catch (IOException e) {
m_reporter.error("Cannot find or analyze inner class '" + resourcePath + "'");
return;
}
}