@@ -35,21 +35,21 @@ data class DiagnosticsConfiguration(
3535 var debounceTime : Long = 250L
3636)
3737
38- public data class JVMConfiguration (
38+ data class JVMConfiguration (
3939 /* * Which JVM target the Kotlin compiler uses. See Compiler.jvmTargetFrom for possible values. */
4040 var target : String = " default"
4141)
4242
43- public data class CompilerConfiguration (
43+ data class CompilerConfiguration (
4444 val jvm : JVMConfiguration = JVMConfiguration ()
4545)
4646
47- public data class IndexingConfiguration (
47+ data class IndexingConfiguration (
4848 /* * Whether an index of global symbols should be built in the background. */
4949 var enabled : Boolean = true
5050)
5151
52- public data class ExternalSourcesConfiguration (
52+ data class ExternalSourcesConfiguration (
5353 /* * Whether kls-URIs should be sent to the client to describe classes in JARs. */
5454 var useKlsScheme : Boolean = false ,
5555 /* * Whether external classes should be automatically converted to Kotlin. */
@@ -104,7 +104,7 @@ class GsonPathConverter : JsonDeserializer<Path?> {
104104 }
105105}
106106
107- public data class Configuration (
107+ data class Configuration (
108108 val codegen : CodegenConfiguration = CodegenConfiguration (),
109109 val compiler : CompilerConfiguration = CompilerConfiguration (),
110110 val completion : CompletionConfiguration = CompletionConfiguration (),
0 commit comments