mirror of
https://github.com/SimpleMobileTools/Simple-Contacts.git
synced 2025-06-05 21:59:27 +02:00
renaming some variable
This commit is contained in:
@ -1,9 +1,9 @@
|
|||||||
package com.simplemobiletools.contacts.overloads
|
package com.simplemobiletools.contacts.overloads
|
||||||
|
|
||||||
operator fun String.times(x: Int): String {
|
operator fun String.times(x: Int): String {
|
||||||
val sb = StringBuilder()
|
val stringBuilder = StringBuilder()
|
||||||
for (i in 1..x) {
|
for (i in 1..x) {
|
||||||
sb.append(this)
|
stringBuilder.append(this)
|
||||||
}
|
}
|
||||||
return sb.toString()
|
return stringBuilder.toString()
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user