fix constructor arguments for extended inner classes

This commit is contained in:
Alexandru-Constantin Bledea
2016-03-19 20:44:29 +02:00
parent 93a39b7b50
commit 0e514a6253
7 changed files with 56 additions and 2 deletions

View File

@@ -334,7 +334,7 @@ public class InvocationExprent extends Exprent {
boolean firstParameter = true;
int start = isEnum ? 2 : 0;
for (int i = start; i < lstParameters.size(); i++) {
if (sigFields == null) {
if (sigFields == null || null == sigFields.get(i)) {
if (!firstParameter) {
buf.append(", ");
}