Remove obsolete diagnostics suppression

The diagnostic NON_PUBLIC_PRIMARY_CONSTRUCTOR_OF_INLINE_CLASS is now
obsolete because internal constructors of inline classes became allowed.
This commit is contained in:
Ilya Gorbunov
2020-12-31 05:46:34 +03:00
parent ebced14db2
commit 87e130e77a
14 changed files with 1 additions and 15 deletions
@@ -10,7 +10,6 @@ package kotlin
@SinceKotlin("1.3")
@ExperimentalUnsignedTypes
public inline class UByteArray
@Suppress("NON_PUBLIC_PRIMARY_CONSTRUCTOR_OF_INLINE_CLASS")
@PublishedApi
internal constructor(@PublishedApi internal val storage: ByteArray) : Collection<UByte> {