Skip to content

Commit

Permalink
fix(lint): Fix remaining 80 character line issue
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Niedermann <[email protected]>
  • Loading branch information
stefan-niedermann committed Jan 20, 2024
1 parent bd232af commit c5ac1c7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ public abstract class SearchableBaseNoteFragment extends BaseNoteFragment {

@Override
public void onStart() {
this.color = ContextCompat.getColor(requireContext(), R.color.defaultBrand);
this.color = ContextCompat.getColor(
requireContext(), R.color.defaultBrand);
super.onStart();
}

Expand Down

0 comments on commit c5ac1c7

Please sign in to comment.