mirror of
https://github.com/moparisthebest/fernflower
synced 2024-11-27 03:32:14 -05:00
missing parentheses on default constructor invocation
This commit is contained in:
parent
b3a1c41244
commit
58427deb49
@ -307,7 +307,7 @@ public class NewExprent extends Exprent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int start = enumconst ? 2 : 0;
|
int start = enumconst ? 2 : 0;
|
||||||
if(start < lstParameters.size()) {
|
if(!enumconst || start < lstParameters.size()) {
|
||||||
buf.append("(");
|
buf.append("(");
|
||||||
|
|
||||||
boolean firstpar = true;
|
boolean firstpar = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user