Cleanup after PR review.

This commit is contained in:
Benoit Marty
2023-03-21 12:33:50 +01:00
parent 00c464fe08
commit ed73e60336
3 changed files with 7 additions and 31 deletions

View File

@@ -21,7 +21,3 @@ plugins {
android {
namespace = "io.element.android.services.analytics.api"
}
dependencies {
// implementation(libs.coroutines.core)
}

View File

@@ -26,30 +26,10 @@ import javax.inject.Inject
@ContributesBinding(AppScope::class)
class AndroidStringProvider @Inject constructor(private val resources: Resources) : StringProvider {
/**
* Returns a localized string from the application's package's
* default string table.
*
* @param resId Resource id for the string
* @return The string data associated with the resource, stripped of styled
* text information.
*/
override fun getString(@StringRes resId: Int): String {
return resources.getString(resId)
}
/**
* Returns a localized formatted string from the application's package's
* default string table, substituting the format arguments as defined in
* [java.util.Formatter] and [java.lang.String.format].
*
* @param resId Resource id for the format string
* @param formatArgs The format arguments that will be used for
* substitution.
* @return The string data associated with the resource, formatted and
* stripped of styled text information.
*/
override fun getString(@StringRes resId: Int, vararg formatArgs: Any?): String {
return resources.getString(resId, *formatArgs)
}