2nd stage of split semantics change: remove deprecated String.split(String), rename splitBy back to split.

This commit is contained in:
Ilya Gorbunov
2015-04-03 22:07:07 +03:00
parent aa6bdb039b
commit b1255cf95b
5 changed files with 14 additions and 37 deletions
-8
View File
@@ -26,14 +26,6 @@ deprecated("Use split(Regex) instead.")
library("splitString")
public fun String.splitWithRegex(regex: String, limit: Int): Array<String> = noImpl
deprecated("Use split(Regex) instead.")
library("splitString")
public fun String.split(regex: String): Array<String> = noImpl
deprecated("Use split(Regex) instead.")
library("splitString")
public fun String.split(regex: String, limit: Int): Array<String> = noImpl
native public fun String.substring(beginIndex : Int) : String = noImpl
native public fun String.substring(beginIndex : Int, endIndex : Int) : String = noImpl