Kotlin: Add additional warning suppresion to v1_9_0 and remove copy in v2_3_0

This commit is contained in:
Anders Fugmann
2026-01-05 17:15:16 +01:00
parent 8ee35231c2
commit 5cdfb77504
2 changed files with 1 additions and 14 deletions

View File

@@ -1,5 +1,5 @@
// For ComponentRegistrar
@file:Suppress("DEPRECATION")
@file:Suppress("DEPRECATION", "DEPRECATION_ERROR")
package com.github.codeql

View File

@@ -1,13 +0,0 @@
// For ComponentRegistrar
@file:Suppress("DEPRECATION", "DEPRECATION_ERROR")
package com.github.codeql
import org.jetbrains.kotlin.compiler.plugin.ComponentRegistrar
import org.jetbrains.kotlin.compiler.plugin.ExperimentalCompilerApi
@OptIn(ExperimentalCompilerApi::class)
abstract class Kotlin2ComponentRegistrar : ComponentRegistrar {
override val supportsK2: Boolean
get() = true
}