Remove StringBuilder functions with nonnull parameter type in K/N and JS #KT-53864
This commit is contained in:
committed by
Space
parent
2a36c08e1f
commit
2d0e95cea0
@@ -112,9 +112,6 @@ public actual class StringBuilder actual constructor(content: String) : Appendab
|
||||
return this
|
||||
}
|
||||
|
||||
@Deprecated("Provided for binary compatibility.", level = DeprecationLevel.HIDDEN)
|
||||
fun append(value: String): StringBuilder = append(value)
|
||||
|
||||
/**
|
||||
* Appends the specified string [value] to this string builder and returns this instance.
|
||||
*
|
||||
@@ -277,9 +274,6 @@ public actual class StringBuilder actual constructor(content: String) : Appendab
|
||||
return this
|
||||
}
|
||||
|
||||
@Deprecated("Provided for binary compatibility.", level = DeprecationLevel.HIDDEN)
|
||||
fun insert(index: Int, value: String): StringBuilder = insert(index, value)
|
||||
|
||||
/**
|
||||
* Inserts the string [value] into this string builder at the specified [index] and returns this instance.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user