Skip to content

Commit

Permalink
Remove nullabe for binding
Browse files Browse the repository at this point in the history
  • Loading branch information
rafalgawlik committed Nov 15, 2021
1 parent 5fc1d70 commit 6e742aa
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,6 @@ public void onWantToHelpButtonClick(View view) {
dismiss();
}

@Override
public void onDestroy() {
super.onDestroy();
binding = null;
}

public void onNextTimeButtonClick(View view) {
dismiss();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,5 @@ public void onActivityCreated(Bundle savedInstanceState) {
public void onDestroy() {
super.onDestroy();
delegate = null;
binding = null;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,6 @@ public void onPause() {
binding.barcodeScanner.pause();
}

@Override
public void onDestroy() {
super.onDestroy();
}

final PermissionCallback permissionCameraCallback = new PermissionCallback() {
@Override
public void permissionGranted() {
Expand Down

0 comments on commit 6e742aa

Please sign in to comment.