Change JS AbstractMutableCollection.toJSON() visibility modifier from open to protected
This commit is contained in:
committed by
Space
parent
a90117faa2
commit
a3eaa3e0f9
@@ -54,8 +54,9 @@ public actual abstract class AbstractMutableCollection<E> protected actual const
|
||||
}
|
||||
}
|
||||
|
||||
@Deprecated("Provided so that subclasses inherit this function", level = DeprecationLevel.HIDDEN)
|
||||
@JsName("toJSON")
|
||||
open fun toJSON(): Any = this.toArray()
|
||||
protected fun toJSON(): Any = this.toArray()
|
||||
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user