else if (returnTypeIndex - 1 >= multinameList.size()) {
errors.add(String.format("Return type of method at offset %08X could not be resolved because its return type index is out of bounds", methodInfo.getBitPosition() / 8));
return null;
}
else {
final MultinameInfo multinameInfo = multinameList.get(returnTypeIndex - 1);
try {
return ActionScript3Helpers.resolveMultiname(multinameInfo, constantStringList, namespaceList);
} catch (final ResolverException e) {
errors.add(String.format("Return type of method at offset %08X could not be resolved because its return type index is out of bounds", methodInfo.getBitPosition() / 8));