Skip to content

Commit

Permalink
fix: lint check
Browse files Browse the repository at this point in the history
  • Loading branch information
MohitGupta121 committed Nov 18, 2023
1 parent f5c89b0 commit c0e7683
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ public static void setProfileDataText(@NonNull TextView textView, long timestamp
@BindingAdapter("profile:lastVisited")
public static void setProfileLastVisitedText(@NonNull TextView textView, long timestamp) {
AppLanguageResourceHandler resourceHandler = getResourceHandler(textView);
String profileLastUsed = resourceHandler.getStringInLocale(R.string.profile_edit_activity_last_used_text);
String profileLastUsed = resourceHandler.getStringInLocale(
R.string.profile_edit_activity_last_used_text
);
String timeAgoTimeStamp = getTimeAgo(textView, timestamp);
String profileLastVisited = resourceHandler.getStringInLocaleWithWrapping(
R.string.profile_last_visited,
Expand Down

0 comments on commit c0e7683

Please sign in to comment.