Skip to content

Commit

Permalink
Fixed lint issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamMc331 committed May 18, 2019
1 parent d84a3de commit 6c9cbbd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package com.adammcneilly.pokedex.network
import com.adammcneilly.pokedex.models.Pokemon
import com.adammcneilly.pokedex.models.PokemonResponse

open class PokemonRetrofitService(private val api: PokemonAPI): PokemonRepository {
open class PokemonRetrofitService(private val api: PokemonAPI) : PokemonRepository {
override suspend fun getPokemon(): PokemonResponse {
return api.getPokemonAsync().await()
}
Expand Down

0 comments on commit 6c9cbbd

Please sign in to comment.