PasswordStore: Resolve some IDE warnings
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
This commit is contained in:
parent
655b3a11f4
commit
00e2cf352f
1 changed files with 9 additions and 16 deletions
|
@ -160,23 +160,16 @@ public class PasswordStore extends AppCompatActivity {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void onRequestPermissionsResult(int requestCode, @NonNull String permissions[], @NonNull int[] grantResults) {
|
||||
switch (requestCode) {
|
||||
case REQUEST_EXTERNAL_STORAGE: {
|
||||
// If request is cancelled, the result arrays are empty.
|
||||
if (grantResults.length > 0
|
||||
&& grantResults[0] == PackageManager.PERMISSION_GRANTED) {
|
||||
checkLocalRepository();
|
||||
}
|
||||
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
|
||||
// If request is cancelled, the result arrays are empty.
|
||||
if (requestCode == REQUEST_EXTERNAL_STORAGE) {
|
||||
if (grantResults.length > 0
|
||||
&& grantResults[0] == PackageManager.PERMISSION_GRANTED) {
|
||||
checkLocalRepository();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onPause() {
|
||||
super.onPause();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onCreateOptionsMenu(Menu menu) {
|
||||
// Inflate the menu; this adds items to the action bar if it is present.
|
||||
|
@ -199,7 +192,7 @@ public class PasswordStore extends AppCompatActivity {
|
|||
|
||||
// When using the support library, the setOnActionExpandListener() method is
|
||||
// static and accepts the MenuItem object as an argument
|
||||
MenuItemCompat.setOnActionExpandListener(searchItem, new MenuItemCompat.OnActionExpandListener() {
|
||||
searchItem.setOnActionExpandListener(new MenuItem.OnActionExpandListener() {
|
||||
@Override
|
||||
public boolean onMenuItemActionCollapse(MenuItem item) {
|
||||
refreshListAdapter();
|
||||
|
@ -341,7 +334,7 @@ public class PasswordStore extends AppCompatActivity {
|
|||
}
|
||||
}
|
||||
|
||||
final Set<String> keyIds = settings.getStringSet("openpgp_key_ids_set", new HashSet<String>());
|
||||
final Set<String> keyIds = settings.getStringSet("openpgp_key_ids_set", new HashSet<>());
|
||||
|
||||
if (keyIds.isEmpty())
|
||||
new AlertDialog.Builder(this)
|
||||
|
@ -602,7 +595,7 @@ public class PasswordStore extends AppCompatActivity {
|
|||
@Override
|
||||
public void execute() {
|
||||
Log.d(TAG, "Committing with message " + message);
|
||||
Git git = new Git(this.repository);
|
||||
Git git = new Git(repository);
|
||||
GitAsyncTask tasks = new GitAsyncTask(activity, false, true, this);
|
||||
tasks.execute(
|
||||
git.add().addFilepattern("."),
|
||||
|
|
Loading…
Reference in a new issue