Remove redundant return

Signed-off-by: Dominic Fischer <dominicfischer7@gmail.com>
This commit is contained in:
Dominic Fischer 2020-11-18 14:23:59 +00:00
parent 94b135ae95
commit 92a6e9ea5a
1 changed files with 4 additions and 4 deletions

View File

@ -103,19 +103,19 @@ internal class DefaultPushRuleService @Inject constructor(
override suspend fun updatePushRuleEnableStatus(kind: RuleKind, pushRule: PushRule, enabled: Boolean) { override suspend fun updatePushRuleEnableStatus(kind: RuleKind, pushRule: PushRule, enabled: Boolean) {
// The rules will be updated, and will come back from the next sync response // The rules will be updated, and will come back from the next sync response
return updatePushRuleEnableStatusTask.execute(UpdatePushRuleEnableStatusTask.Params(kind, pushRule, enabled)) updatePushRuleEnableStatusTask.execute(UpdatePushRuleEnableStatusTask.Params(kind, pushRule, enabled))
} }
override suspend fun addPushRule(kind: RuleKind, pushRule: PushRule) { override suspend fun addPushRule(kind: RuleKind, pushRule: PushRule) {
return addPushRuleTask.execute(AddPushRuleTask.Params(kind, pushRule)) addPushRuleTask.execute(AddPushRuleTask.Params(kind, pushRule))
} }
override suspend fun updatePushRuleActions(kind: RuleKind, oldPushRule: PushRule, newPushRule: PushRule) { override suspend fun updatePushRuleActions(kind: RuleKind, oldPushRule: PushRule, newPushRule: PushRule) {
return updatePushRuleActionsTask.execute(UpdatePushRuleActionsTask.Params(kind, oldPushRule, newPushRule)) updatePushRuleActionsTask.execute(UpdatePushRuleActionsTask.Params(kind, oldPushRule, newPushRule))
} }
override suspend fun removePushRule(kind: RuleKind, pushRule: PushRule) { override suspend fun removePushRule(kind: RuleKind, pushRule: PushRule) {
return removePushRuleTask.execute(RemovePushRuleTask.Params(kind, pushRule)) removePushRuleTask.execute(RemovePushRuleTask.Params(kind, pushRule))
} }
override fun removePushRuleListener(listener: PushRuleService.PushRuleListener) { override fun removePushRuleListener(listener: PushRuleService.PushRuleListener) {