Restore binary compatibility of BinaryVersion #KT-56119 Fixed

This commit is contained in:
Mikhail Glukhikh
2023-03-20 13:36:32 +01:00
committed by Space Team
parent 0863e9c589
commit e99b453816
@@ -26,7 +26,7 @@ abstract class BinaryVersion(private vararg val numbers: Int) {
} else emptyList()
@Deprecated("Please use isCompatibleWithCurrentCompilerVersion()", ReplaceWith("isCompatibleWithCurrentCompilerVersion()"))
fun isCompatible(): Boolean = isCompatibleWithCurrentCompilerVersion()
open fun isCompatible(): Boolean = isCompatibleWithCurrentCompilerVersion()
abstract fun isCompatibleWithCurrentCompilerVersion(): Boolean