Skip to content

Commit 00a14b6

Browse files
committed
Disable conversion of external sources to Kotlin by default
1 parent fd9df40 commit 00a14b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/src/main/kotlin/org/javacs/kt/Configuration.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ public data class IndexingConfiguration(
3131
public data class ExternalSourcesConfiguration(
3232
/** Whether kls-URIs should be sent to the client to describe classes in JARs. */
3333
var useKlsScheme: Boolean = false,
34-
/** Whether external classes classes should be automatically converted to Kotlin. */
35-
var autoConvertToKotlin: Boolean = true
34+
/** Whether external classes should be automatically converted to Kotlin. */
35+
var autoConvertToKotlin: Boolean = false
3636
)
3737

3838
public data class Configuration(

0 commit comments

Comments
 (0)