Skip to content

Commit 85b1fa2

Browse files
committed
* Removed experimental annotations
1 parent 3d8c451 commit 85b1fa2

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/main/kotlin/kscript/app/KscriptHandler.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import java.net.URI
1515

1616
class KscriptHandler(private val config: Config, private val docopt: DocOptWrapper) {
1717

18-
@OptIn(ExperimentalStdlibApi::class)
1918
fun handle(userArgs: List<String>) {
2019
Logger.silentMode = docopt.getBoolean("silent")
2120
Logger.devMode = docopt.getBoolean("development")

src/main/kotlin/kscript/app/resolver/CommandResolver.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ class CommandResolver(private val config: Config, private val script: Script) {
1919
return "kotlinc $compilerOptsStr $classpath -d '${jar.absolute()}' $files"
2020
}
2121

22-
@OptIn(ExperimentalStdlibApi::class)
2322
fun executeKotlin(jarArtifact: JarArtifact, dependencies: Set<Path>, userArgs: List<String>): String {
2423
val kotlinOptsStr = resolveKotlinOpts(script.kotlinOpts)
2524
val userArgsStr = resolveUserArgs(userArgs)

0 commit comments

Comments
 (0)