Skip to content

Commit

Permalink
refactor: 변수 타입 명시
Browse files Browse the repository at this point in the history
  • Loading branch information
hxeyexn committed Dec 27, 2024
1 parent 3b8ff3d commit 178357c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class ApiResultCall<T : Any>(
call: Call<T>,
response: Response<T>,
) {
val networkResult = handleApiResponse { response }
val networkResult: ApiResult<T> = handleApiResponse { response }
callback.onResponse(this@ApiResultCall, Response.success(networkResult))
}

Expand Down

0 comments on commit 178357c

Please sign in to comment.