fix detect errors
This commit is contained in:
parent
2a3404d2e4
commit
27eddec464
|
|
@ -11,6 +11,7 @@ internal data class ApnsHmsOptions private constructor(
|
|||
|
||||
class Validator {
|
||||
|
||||
@Suppress("UNUSED_PARAMETER")
|
||||
fun check(apnsHmsOptions: ApnsHmsOptions) {
|
||||
// no validation
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue