Skip to content

Commit 3a1c5ce

Browse files
committed
JS: changed BoxedChar visibility to internal
(cherry picked from commit 3eb5b3e)
1 parent b9efc2e commit 3a1c5ce

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

js/js.libraries/src/core/builtins.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ internal fun newThrowable(message: String?, cause: Throwable?): Throwable {
7272
return throwable
7373
}
7474

75-
public class BoxedChar(val c: Char) : Comparable<Char> {
75+
@JsName("BoxedChar")
76+
internal class BoxedChar(val c: Char) : Comparable<Char> {
7677
override fun equals(other: Any?): Boolean {
7778
return other is BoxedChar && c == other.c
7879
}

0 commit comments

Comments
 (0)