mirror of
https://hub.spigotmc.org/stash/scm/spigot/fernflower.git
synced 2025-09-18 22:14:39 +00:00
missing parentheses on default constructor invocation
This commit is contained in:
parent
b3a1c41244
commit
58427deb49
1 changed files with 1 additions and 1 deletions
|
@ -307,7 +307,7 @@ public class NewExprent extends Exprent {
|
|||
}
|
||||
|
||||
int start = enumconst ? 2 : 0;
|
||||
if(start < lstParameters.size()) {
|
||||
if(!enumconst || start < lstParameters.size()) {
|
||||
buf.append("(");
|
||||
|
||||
boolean firstpar = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue