Remove redundant return
Signed-off-by: Dominic Fischer <dominicfischer7@gmail.com>
This commit is contained in:
parent
e42cad68b4
commit
822ce41b54
|
@ -23,6 +23,6 @@ internal class DefaultGroup(override val groupId: String,
|
||||||
|
|
||||||
override suspend fun fetchGroupData() {
|
override suspend fun fetchGroupData() {
|
||||||
val params = GetGroupDataTask.Params.FetchWithIds(listOf(groupId))
|
val params = GetGroupDataTask.Params.FetchWithIds(listOf(groupId))
|
||||||
return getGroupDataTask.execute(params)
|
getGroupDataTask.execute(params)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue