Don't use private interfaces in stdlib.

This is a murky area which exists just because jvm allows that.
This commit is contained in:
Alexander Gorshenev
2019-04-16 17:45:18 +03:00
committed by alexander-gorshenev
parent b586be2a50
commit 10ade4cd35
+2 -1
View File
@@ -7,7 +7,8 @@ package kotlin.text
import kotlin.text.regex.*
private interface FlagEnum {
@PublishedApi
internal interface FlagEnum {
val value: Int
val mask: Int
}