se.ansman.dagger.auto.compiler.common.Strings.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compiler-common Show documentation
Show all versions of compiler-common Show documentation
Automatic Dagger setup using Hilt
The newest version!
package se.ansman.dagger.auto.compiler.common
fun StringBuilder.deleteSuffix(suffix: CharSequence) {
if (endsWith(suffix)) {
delete(length - suffix.length, length)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy