diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/types/MethodInfo.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/types/MethodInfo.java index dfa4dc4fc..099e8ba6f 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/types/MethodInfo.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/types/MethodInfo.java @@ -325,8 +325,7 @@ public class MethodInfo { public GraphTextWriter getReturnTypeStr(GraphTextWriter writer, AVM2ConstantPool constants, List fullyQualifiedNames) { String rname = "*"; if(ret_type>0){ - constants.getMultiname(ret_type).getName(constants, fullyQualifiedNames, true); - rname = IdentifiersDeobfuscation.printIdentifier(true,rname,"void"); + rname = IdentifiersDeobfuscation.printIdentifier(true,constants.getMultiname(ret_type).getName(constants, fullyQualifiedNames, true),"void"); } return writer.hilightSpecial(rname, "returns"); }