Skip to content

Commit

Permalink
Remove unused View.OnClickListener interface from backup fragment
Browse files Browse the repository at this point in the history
  • Loading branch information
joggee-fr authored and justin-stephenson committed Jun 12, 2024
1 parent f0c3d57 commit 2c43f96
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import android.widget.TextView;
import android.widget.Button;

public class BackupsFragment extends Fragment implements View.OnClickListener {
public class BackupsFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
Expand All @@ -36,8 +36,4 @@ public void onboardDone(View view) {
sharedPreferencesEditor.putBoolean(COMPLETED_ONBOARDING, true).apply();
requireActivity().finish();
}

@Override
public void onClick(View view) {
}
}

0 comments on commit 2c43f96

Please sign in to comment.