Skip to content

Commit

Permalink
Revert "Reapply "UPDATE_KOTLIN_VERSION: 2.0.0-dev-6573""
Browse files Browse the repository at this point in the history
This reverts commit e34055b.
  • Loading branch information
neetopia committed Dec 25, 2023
1 parent 16ba68a commit 660f505
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
4 changes: 0 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,4 @@ subprojects {
}
)
}

tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
compilerOptions.freeCompilerArgs.add("-Xskip-prerelease-check")
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ class IncrementalContext(

logSourceToOutputs(outputs, sourceToOutputs)

sourceToOutputsMap.flush()
sourceToOutputsMap.flush(false)
}

private fun updateOutputs(outputs: Set<File>, cleanOutputs: Collection<File>) {
Expand Down Expand Up @@ -474,15 +474,15 @@ class IncrementalContext(
update(symbolsMap, updatedSymbols)
remove(symbolsMap, removed)
} else {
symbolsMap.clear()
symbolsMap.clean()
update(symbolsMap, updatedSymbols)

sealedMap.clear()
sealedMap.clean()
update(sealedMap, updatedSealed)
}
symbolsMap.flush()
symbolsMap.flush(false)
symbolsMap.close()
sealedMap.flush()
sealedMap.flush(false)
sealedMap.close()
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copied from kotlinc
org.gradle.jvmargs=-Duser.country=US -Dkotlin.daemon.jvm.options=-Xmx2200m -Dfile.encoding=UTF-8

kotlinBaseVersion=2.0.0-dev-6573
kotlinBaseVersion=2.0.0-dev-4562
agpBaseVersion=7.0.0
intellijVersion=213.7172.25
junitVersion=4.13.1
Expand Down

0 comments on commit 660f505

Please sign in to comment.