Drop RawTypeMarker as it's effectively unused anymore

See the previous commits
This commit is contained in:
Denis.Zharkov
2023-02-24 13:01:01 +01:00
committed by Space Team
parent 608cb01935
commit a3dcc2032f
4 changed files with 3 additions and 6 deletions
@@ -184,7 +184,7 @@ data class ConeDefinitelyNotNullType(val original: ConeSimpleKotlinType) : ConeS
class ConeRawType private constructor(
lowerBound: ConeSimpleKotlinType,
upperBound: ConeSimpleKotlinType
) : ConeFlexibleType(lowerBound, upperBound), RawTypeMarker {
) : ConeFlexibleType(lowerBound, upperBound) {
companion object {
fun create(
lowerBound: ConeSimpleKotlinType,