mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-16 15:41:52 +00:00
Fixed Issue #6 - rest parameter shown always as ", ..."
This commit is contained in:
@@ -276,7 +276,10 @@ public class MethodInfo {
|
||||
}
|
||||
}
|
||||
if(flagNeed_rest()){
|
||||
paramStr+=", ... ";
|
||||
if((param_types!=null)&&(param_types.length>0)){
|
||||
paramStr+=", ";
|
||||
}
|
||||
paramStr+="... ";
|
||||
if(!localRegNames.isEmpty())
|
||||
{
|
||||
paramStr+=localRegNames.get(param_types.length+1);
|
||||
|
||||
Reference in New Issue
Block a user