Skip to content

Commit 8cd3932

Browse files
committed
CHORE: runCatching 사용 일관성 통일
1 parent 58aa6f3 commit 8cd3932

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data/src/main/java/com/threegap/bitnagil/data/auth/datasourceimpl/AuthLocalDataSourceImpl.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class AuthLocalDataSourceImpl @Inject constructor(
1919
}
2020

2121
override suspend fun clearAuthToken(): Result<Unit> =
22-
kotlin.runCatching {
22+
runCatching {
2323
authTokenDataStore.clearAuthToken()
2424
}
2525
}

0 commit comments

Comments
 (0)