From 186a1b51471a0844d4408ae5eab75e71f08acb15 Mon Sep 17 00:00:00 2001 From: "eric.marchand" Date: Wed, 14 Apr 2021 00:53:40 +0200 Subject: [PATCH] Remove dedundant toString klint failed with wrong message https://github.com/pinterest/ktlint/issues/996 --- .../java/com/qmobile/qmobileapi/utils/UserInfoDateFormatter.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qmobileapi/src/main/java/com/qmobile/qmobileapi/utils/UserInfoDateFormatter.kt b/qmobileapi/src/main/java/com/qmobile/qmobileapi/utils/UserInfoDateFormatter.kt index 90ca277..9a11857 100644 --- a/qmobileapi/src/main/java/com/qmobile/qmobileapi/utils/UserInfoDateFormatter.kt +++ b/qmobileapi/src/main/java/com/qmobile/qmobileapi/utils/UserInfoDateFormatter.kt @@ -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() }