From 8ea6f369037e1ab5b4310dd8485c3f7758aed4c6 Mon Sep 17 00:00:00 2001 From: Alexey Tsvetkov Date: Tue, 1 Sep 2015 19:16:22 +0300 Subject: [PATCH] Minor: move comment to the member it was written for Accidentally moved comment when refactored GenerationState --- .../src/org/jetbrains/kotlin/codegen/state/GenerationState.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/backend/src/org/jetbrains/kotlin/codegen/state/GenerationState.kt b/compiler/backend/src/org/jetbrains/kotlin/codegen/state/GenerationState.kt index 200330c0a69..932c5b9523d 100644 --- a/compiler/backend/src/org/jetbrains/kotlin/codegen/state/GenerationState.kt +++ b/compiler/backend/src/org/jetbrains/kotlin/codegen/state/GenerationState.kt @@ -48,8 +48,8 @@ public class GenerationState jvmOverloads constructor( disableInline: Boolean = false, disableOptimization: Boolean = false, public val diagnostics: DiagnosticSink = DiagnosticSink.DO_NOTHING, - // for PackageCodegen in incremental compilation mode public val packagesWithObsoleteParts: Collection = emptySet(), + // for PackageCodegen in incremental compilation mode public val moduleId: String? = null, // TODO: temporary hack, see JetTypeMapperWithOutDirectory state for details public val outDirectory: File? = null,