Removed this were not needed.

This commit is contained in:
Erik C. Thauvin 2016-09-08 01:50:30 -07:00
parent 68d8eab74d
commit 923252ff87

View file

@ -32,11 +32,11 @@ fun String.isDigits(): Boolean {
}
fun String.isDKS(): Boolean {
return this.equals(Dtmf.DKS, true)
return equals(Dtmf.DKS, true)
}
fun String.isLinear(): Boolean {
return this.equals(Dtmf.LINEAR, true)
return equals(Dtmf.LINEAR, true)
}
fun String.replaceAll(replace: Array<Pair<String, String>>): String {