GenerationState in TypeMapper replaced with boolean flag

This commit is contained in:
Michael Bogdanov
2016-10-03 13:37:54 +03:00
parent 95a1c254e1
commit 1eac6d47ed
8 changed files with 23 additions and 14 deletions
@@ -161,7 +161,7 @@ abstract class AbstractAnnotationProcessingExtension(
private fun KotlinProcessingEnvironment.createTypeMapper(): KotlinTypeMapper {
return KotlinTypeMapper(bindingContext, ClassBuilderMode.full(false), NoResolveFileClassesProvider,
null, IncompatibleClassTracker.DoNothing, JvmAbi.DEFAULT_MODULE_NAME, null)
null, IncompatibleClassTracker.DoNothing, JvmAbi.DEFAULT_MODULE_NAME, false)
}
private fun KotlinProcessingEnvironment.doAnnotationProcessing(files: Collection<KtFile>): ProcessingResult {