fix detect errors

This commit is contained in:
Alexander Buntakov 2022-11-12 18:58:57 +03:00
parent 2a3404d2e4
commit 27eddec464
2 changed files with 3 additions and 1 deletions

View File

@ -11,6 +11,7 @@ internal data class ApnsHmsOptions private constructor(
class Validator {
@Suppress("UNUSED_PARAMETER")
fun check(apnsHmsOptions: ApnsHmsOptions) {
// no validation
}

View File

@ -26,6 +26,7 @@ internal data class WebNotification private constructor(
class Validator {
@Suppress("UNUSED_PARAMETER")
fun check(webNotification: WebNotification) {
// no verification required
}
@ -70,7 +71,7 @@ internal data class WebNotification private constructor(
}
fun setLang(lang: String): Builder {
this.lang
this.lang = lang
return this
}