Minor: remove unused variable

This commit is contained in:
Alexey Tsvetkov
2017-12-03 21:15:07 +03:00
parent dfe176efca
commit e3a9ad5a74
@@ -189,7 +189,6 @@ abstract class IncrementalCompilerRunner<
val allSourcesToCompile = HashSet<File>()
var exitCode = ExitCode.OK
val allGeneratedFiles = hashSetOf<GeneratedFile>()
while (dirtySources.any() || runWithNoDirtyKotlinSources(caches)) {
caches.platformCache.markDirty(dirtySources)
@@ -228,7 +227,6 @@ abstract class IncrementalCompilerRunner<
}
}
allGeneratedFiles.addAll(generatedFiles)
caches.inputsCache.registerOutputForSourceFiles(generatedFiles)
caches.lookupCache.update(lookupTracker, sourcesToCompile, removedKotlinSources)
val changesCollector = ChangesCollector()