Merge pull request #7024 from Stypox/string-fixes

Never use ``android.R.string``s; remove unused ``add`` string
This commit is contained in:
Stypox 2021-08-31 12:00:07 +02:00 committed by GitHub
commit a555aab3e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
83 changed files with 92 additions and 166 deletions

View file

@ -555,7 +555,7 @@ public class MissionAdapter extends Adapter<ViewHolder> implements Handler.Callb
);
}
builder.setNegativeButton(R.string.finish, (dialog, which) -> dialog.cancel())
builder.setNegativeButton(R.string.ok, (dialog, which) -> dialog.cancel())
.setTitle(mission.storage.getName())
.create()
.show();