Fixed wrong constructor arguments order

This commit is contained in:
Denis Zharkov
2014-11-04 17:29:27 +04:00
committed by Andrey Breslav
parent a8ca39754c
commit 73ca75cc0b
5 changed files with 66 additions and 3 deletions
@@ -73,7 +73,7 @@ public class AnonymousObjectGeneration {
boolean isStaticOrigin
) {
this(
ownerInternalName, isSameModule, needReification,
ownerInternalName, needReification, isSameModule,
new HashMap<Integer, LambdaInfo>(), false, alreadyRegenerated, null, isStaticOrigin
);
}