Skip to content

Commit 4fa7300

Browse files
committed
Fixes
Change-Id: Iedcafbf0ad7b853544b7b5b3f37685a0a868c2e6
1 parent 9e399b6 commit 4fa7300

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

core/network/src/main/java/com/google/samples/apps/nowinandroid/core/network/di/NetworkModule.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ object NetworkModule {
5858
if (BuildConfig.DEBUG) {
5959
setLevel(HttpLoggingInterceptor.Level.BODY)
6060
}
61-
}
61+
},
6262
)
6363
.build()
6464

core/network/src/main/java/com/google/samples/apps/nowinandroid/core/network/retrofit/RetrofitNiaNetwork.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,13 @@ private data class NetworkResponse<T>(
6868
val data: T,
6969
)
7070

71-
7271
/**
7372
* [Retrofit] backed [NiaNetworkDataSource]
7473
*/
7574
@Singleton
7675
class RetrofitNiaNetwork @Inject constructor(
7776
networkJson: Json,
78-
okhttpCallFactory: Call.Factory
77+
okhttpCallFactory: Call.Factory,
7978
) : NiaNetworkDataSource {
8079

8180
private val networkApi = Retrofit.Builder()

0 commit comments

Comments
 (0)