Skip to content

Commit

Permalink
Remove dedundant toString
Browse files Browse the repository at this point in the history
klint failed with wrong message pinterest/ktlint#996
  • Loading branch information
e-marchand committed Apr 13, 2021
1 parent b4edd8c commit 186a1b5
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 @@ object UserInfoDateFormatter {
@SuppressLint("SimpleDateFormat")
fun storeUserInfo(userInfo: JsonObject, preferences: SharedPreferences) {
userInfoIterator(userInfo)
Timber.v("Store user info ${userInfo.toString()}")
Timber.v("Store user info $userInfo")
preferences[AuthInfoHelper.USER_INFO] = userInfo.toString()
}

Expand Down

0 comments on commit 186a1b5

Please sign in to comment.