mirror of
https://github.com/moparisthebest/fernflower
synced 2024-11-23 09:42:18 -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;
|
||||
if(start < lstParameters.size()) {
|
||||
if(!enumconst || start < lstParameters.size()) {
|
||||
buf.append("(");
|
||||
|
||||
boolean firstpar = true;
|
||||
|
Loading…
Reference in New Issue
Block a user