mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-28 00:15:40 +00:00
Issue #159 AS3: fixed Improper rest parameter handling on MethodInfo tab
This commit is contained in:
@@ -102,7 +102,10 @@ public class MethodInfoPanel extends JPanel {
|
||||
p++;
|
||||
}
|
||||
if (methodInfo.flagNeed_rest()) {
|
||||
ret += ",\n... rest";
|
||||
if (p > 0) {
|
||||
ret += ",\n";
|
||||
}
|
||||
ret += "... rest";
|
||||
}
|
||||
paramEditor.setText(ret);
|
||||
if (methodInfo.ret_type == 0) {
|
||||
|
||||
Reference in New Issue
Block a user