mirror of
https://github.com/android-password-store/Android-Password-Store
synced 2025-08-30 13:57:47 +00:00
more refactoring
This commit is contained in:
@@ -202,7 +202,7 @@ public class PasswordStore extends Activity implements ToCloneOrNot.OnFragmentI
|
||||
}
|
||||
|
||||
public void createPassword(View v) {
|
||||
this.currentDir = new File(((PasswordFragment) getFragmentManager().findFragmentByTag("PasswordsList")).getArguments().getString("Path"));
|
||||
this.currentDir = getCurrentDir();
|
||||
Log.i("PWDSTR", "Adding file to : " + this.currentDir.getAbsolutePath());
|
||||
this.leftActivity = true;
|
||||
|
||||
@@ -226,6 +226,10 @@ public class PasswordStore extends Activity implements ToCloneOrNot.OnFragmentI
|
||||
}
|
||||
}
|
||||
|
||||
private File getCurrentDir() {
|
||||
return new File(((PasswordFragment) getFragmentManager().findFragmentByTag("PasswordsList")).getArguments().getString("Path"));
|
||||
}
|
||||
|
||||
protected void onActivityResult(int requestCode, int resultCode,
|
||||
Intent data) {
|
||||
if (resultCode == RESULT_OK) {
|
||||
|
Reference in New Issue
Block a user